idlehomescreen/nativeuicontroller/src/aistatuspanel.cpp
branchRCL_3
changeset 35 3321d3e205b6
parent 34 5456b4e8b3a8
--- a/idlehomescreen/nativeuicontroller/src/aistatuspanel.cpp	Wed Sep 01 12:32:46 2010 +0100
+++ b/idlehomescreen/nativeuicontroller/src/aistatuspanel.cpp	Tue Sep 14 20:58:58 2010 +0300
@@ -355,6 +355,8 @@
 
 void CAiStatusPanel::SetNaviPaneTextL( const TDesC& aText )
     {
+    __PRINT(__DBG_FORMAT("XAI: CAiStatusPanel::SetNaviPaneTextL aText = %S"), 
+        &aText );
     delete iNaviPaneText;
     iNaviPaneText = NULL;
     if ( !AknStatuspaneUtils::FlatLayoutActive() )
@@ -368,6 +370,9 @@
 
 void CAiStatusPanel::SetTitlePaneTextL( const TDesC& aText )
     {
+    __PRINT(__DBG_FORMAT("XAI: CAiStatusPanel::SetTitlePaneTextL aText = %S"), 
+        &aText );
+
     HBufC* temp = aText.AllocL();
     delete iTitlePaneText;
     iTitlePaneText = temp;
@@ -395,18 +400,22 @@
 
 void CAiStatusPanel::StopTitlePaneScrollingL()
     {
+    __PRINTS("XAI: CAiStatusPanel::StopTitlePaneScrollingL");
     // stop scrolling
     if(  iTextInTitlePane && iTitlePane->Text() )
         {
+        __PRINTS("XAI: stop scrolling");
         iTitlePane->SetTextL( *iTitlePane->Text(), EFalse );
         }
     }
 
 void CAiStatusPanel::ScrollTitlePaneTextL()
     {
+    __PRINTS("XAI: CAiStatusPanel::ScrollTitlePaneTextL");
     // start scrolling
     if ( iTextInTitlePane && iTitlePane->Text() )           
         {
+        __PRINTS("XAI: start scrolling");
         iTitlePane->SetTextL( *iTitlePane->Text(), ETrue );
         }
     }