uifw/AvKon/src/aknprogresstimer.cpp
branchRCL_3
changeset 55 aecbbf00d063
parent 4 8ca85d2f0db7
child 56 d48ab3b357f1
--- 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 <coemain.h>
+
 #include "aknnotecontrol.h"
 #include "aknprogresstimer.h"
-#include "akntrace.h"
-
+#include <coemain.h>
 
 //////////////////////////////////////////////////////////////////////
 // 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