connectivitymodules/SeCon/services/csc/src/stringlist.cpp
branchRCL_3
changeset 17 dbd1c5e08735
parent 0 d0791faffa3f
--- a/connectivitymodules/SeCon/services/csc/src/stringlist.cpp	Mon Jun 21 16:36:59 2010 +0300
+++ b/connectivitymodules/SeCon/services/csc/src/stringlist.cpp	Thu Jul 15 19:35:12 2010 +0300
@@ -33,10 +33,8 @@
 //
 CStringList* CStringList::NewL()
     {
-    TRACE_FUNC_ENTRY;
     CStringList* self = CStringList::NewLC();
     CleanupStack::Pop( self );
-    TRACE_FUNC_EXIT;
     return self;
     }
 
@@ -47,11 +45,9 @@
 //
 CStringList* CStringList::NewLC()
     {
-    TRACE_FUNC_ENTRY;
     CStringList* self = new ( ELeave ) CStringList();
     CleanupStack::PushL( self );
     self->ConstructL();
-    TRACE_FUNC_EXIT;
     return self;
     }
 
@@ -62,7 +58,6 @@
 //
 CStringList::CStringList()
     {
-    TRACE_FUNC;
     }
 
 // -----------------------------------------------------------------------------
@@ -72,10 +67,8 @@
 //
 CStringList::~CStringList()
     {
-    TRACE_FUNC_ENTRY;
     delete iLines;
     iLines = NULL;
-    TRACE_FUNC_EXIT;
     }
 
 // -----------------------------------------------------------------------------
@@ -85,11 +78,9 @@
 //
 void CStringList::ConstructL()
     {
-    TRACE_FUNC_ENTRY;
     const TInt KDefaultArrayGranularity = 10;
     iLines = new (ELeave) CDesCArrayFlat(KDefaultArrayGranularity);
     SetMark(0);
-    TRACE_FUNC_EXIT;
     }
 
 // -----------------------------------------------------------------------------