diff -r 2f259fa3e83a -r 8ca85d2f0db7 uifw/AvKon/src/aknprogresstimer.cpp --- a/uifw/AvKon/src/aknprogresstimer.cpp Tue Feb 02 01:00:49 2010 +0200 +++ b/uifw/AvKon/src/aknprogresstimer.cpp Fri Feb 19 23:04:46 2010 +0200 @@ -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