omads/omadsextensions/adapters/agenda/src/nsmlagendaprogressview.cpp
branchRCL_3
changeset 24 8e7494275d3a
parent 1 95fdac6ccb5c
child 25 4f0867e42d62
--- a/omads/omadsextensions/adapters/agenda/src/nsmlagendaprogressview.cpp	Thu Aug 19 09:41:17 2010 +0300
+++ b/omads/omadsextensions/adapters/agenda/src/nsmlagendaprogressview.cpp	Tue Aug 31 15:05:37 2010 +0300
@@ -18,9 +18,8 @@
 
 
 // INCLUDES
-#include "nsmlagendadebug.h"
+#include "nsmldebug.h"
 #include "nsmlagendadatastore.h"
-#include <nsmldebug.h>
 
 // ===================================== MEMBER FUNCTIONS ======================
 // -----------------------------------------------------------------------------
@@ -29,10 +28,10 @@
 // -----------------------------------------------------------------------------
 CNSmlAgendaProgressview* CNSmlAgendaProgressview::NewL()
 	{
-	FLOG(_L("CNSmlAgendaProgressview::NewL(): BEGIN"));
+	_DBG_FILE("CNSmlAgendaProgressview::NewL(): BEGIN");
 	CNSmlAgendaProgressview* self = new (ELeave) CNSmlAgendaProgressview();
 	self->ConstructL();
-	FLOG(_L("CNSmlAgendaProgressview::NewL(): END"));
+	_DBG_FILE("CNSmlAgendaProgressview::NewL(): END");
 	return self;
 	}
 	
@@ -42,9 +41,9 @@
 // -----------------------------------------------------------------------------
 CNSmlAgendaProgressview::~CNSmlAgendaProgressview()
 	{
-	FLOG(_L("CNSmlAgendaProgressview::~CNSmlAgendaProgressview(): BEGIN"));
+	_DBG_FILE("CNSmlAgendaProgressview::~CNSmlAgendaProgressview(): BEGIN");
 	// Nothing to do
-	FLOG(_L("CNSmlAgendaProgressview::~CNSmlAgendaProgressview(): END"));
+	_DBG_FILE("CNSmlAgendaProgressview::~CNSmlAgendaProgressview(): END");
 	}
 
 // -----------------------------------------------------------------------------
@@ -54,8 +53,8 @@
 // -----------------------------------------------------------------------------
 void CNSmlAgendaProgressview::Progress( TInt /*aPercentageCompleted*/ )
 	{
-	FLOG(_L("CNSmlAgendaProgressview::Progress(): BEGIN"));
-	FLOG(_L("CNSmlAgendaProgressview::Progress(): END"));
+	_DBG_FILE("CNSmlAgendaProgressview::Progress(): BEGIN");
+	_DBG_FILE("CNSmlAgendaProgressview::Progress(): END");
 	}
 	
 // -----------------------------------------------------------------------------
@@ -64,12 +63,12 @@
 // -----------------------------------------------------------------------------
 void CNSmlAgendaProgressview::Completed( TInt aError )
 	{
-	FLOG(_L("CNSmlAgendaProgressview::Completed(): BEGIN"));
+	_DBG_FILE("CNSmlAgendaProgressview::Completed(): BEGIN");
 
     iCompletedStatus = aError;
 	CActiveScheduler::Stop();
 
-    FLOG(_L("CNSmlAgendaProgressview::Completed(): END"));
+    _DBG_FILE("CNSmlAgendaProgressview::Completed(): END");
 	}
 
 // -----------------------------------------------------------------------------
@@ -87,8 +86,8 @@
 // -----------------------------------------------------------------------------
 TBool CNSmlAgendaProgressview::NotifyProgress()
 	{
-	FLOG(_L("CNSmlAgendaProgressview::NotifyProgress(): BEGIN"));
-	FLOG(_L("CNSmlAgendaProgressview::NotifyProgress(): END"));
+	_DBG_FILE("CNSmlAgendaProgressview::NotifyProgress(): BEGIN");
+	_DBG_FILE("CNSmlAgendaProgressview::NotifyProgress(): END");
 	return EFalse;
 	}
 
@@ -99,9 +98,9 @@
 CNSmlAgendaProgressview::CNSmlAgendaProgressview() :
 	iCompletedStatus( KErrNotReady )
 	{
-	FLOG(_L("CNSmlAgendaProgressview::CNSmlAgendaProgressview(): BEGIN"));
+	_DBG_FILE("CNSmlAgendaProgressview::CNSmlAgendaProgressview(): BEGIN");
 	// Nothing to do
-	FLOG(_L("CNSmlAgendaProgressview::CNSmlAgendaProgressview(): END"));
+	_DBG_FILE("CNSmlAgendaProgressview::CNSmlAgendaProgressview(): END");
 	}
 	
 // -----------------------------------------------------------------------------
@@ -110,9 +109,9 @@
 // -----------------------------------------------------------------------------
 void CNSmlAgendaProgressview::ConstructL()
     {
-    FLOG(_L("CNSmlAgendaProgressview::ConstructL(): BEGIN"));
+    _DBG_FILE("CNSmlAgendaProgressview::ConstructL(): BEGIN");
     // Nothing to do
-    FLOG(_L("CNSmlAgendaProgressview::ConstructL(): END"));
+    _DBG_FILE("CNSmlAgendaProgressview::ConstructL(): END");
     }
 
 //  End of File