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