diff -r b01126ce0bec -r ba63c83f4716 idlehomescreen/nativeuicontroller/src/aistatuspanel.cpp --- a/idlehomescreen/nativeuicontroller/src/aistatuspanel.cpp Wed Sep 15 12:00:00 2010 +0300 +++ b/idlehomescreen/nativeuicontroller/src/aistatuspanel.cpp Wed Oct 13 14:18:30 2010 +0300 @@ -355,8 +355,6 @@ void CAiStatusPanel::SetNaviPaneTextL( const TDesC& aText ) { - __PRINT(__DBG_FORMAT("XAI: CAiStatusPanel::SetNaviPaneTextL aText = %S"), - &aText ); delete iNaviPaneText; iNaviPaneText = NULL; if ( !AknStatuspaneUtils::FlatLayoutActive() ) @@ -370,9 +368,6 @@ void CAiStatusPanel::SetTitlePaneTextL( const TDesC& aText ) { - __PRINT(__DBG_FORMAT("XAI: CAiStatusPanel::SetTitlePaneTextL aText = %S"), - &aText ); - HBufC* temp = aText.AllocL(); delete iTitlePaneText; iTitlePaneText = temp; @@ -400,22 +395,18 @@ 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 ); } }