diff -r fcdfafb36fe7 -r aecbbf00d063 uifw/AvKon/src/aknprogresstimer.cpp --- a/uifw/AvKon/src/aknprogresstimer.cpp Thu Aug 19 10:11:06 2010 +0300 +++ b/uifw/AvKon/src/aknprogresstimer.cpp Tue Aug 31 15:28:30 2010 +0300 @@ -18,11 +18,10 @@ // AknProgressTimer.cpp: implementation of the CAknProgressTimer class. // ////////////////////////////////////////////////////////////////////// -#include + #include "aknnotecontrol.h" #include "aknprogresstimer.h" -#include "akntrace.h" - +#include ////////////////////////////////////////////////////////////////////// // Construction/Destruction @@ -46,7 +45,6 @@ void CAknProgressTimer::ConstructL(TTimerModel *aModel,CAknNoteControl *aContainer,TCallBack aCallBack) { - _AKNTRACE_FUNC_ENTER; iCallBack = aCallBack; CTimer::ConstructL(); CActiveScheduler::Add(this); @@ -55,7 +53,6 @@ iContainer->SetFinalProgressValue(iModel->iFinalValue); if (iModel->iRunning) Queue(); - _AKNTRACE_FUNC_EXIT; } void CAknProgressTimer::Queue() @@ -65,12 +62,10 @@ void CAknProgressTimer::RunL() { - _AKNTRACE_FUNC_ENTER; if (iContainer->IncrementBarsAndDraw(iModel->iIncrement)) Queue(); else iCallBack.CallBack(); - _AKNTRACE_FUNC_EXIT; } // End of File