gba/gbaserver/src/dataretriever.cpp
branchRCL_3
changeset 21 09b1ac925e3f
parent 5 3b17fc5c9564
child 22 03674e5abf46
--- a/gba/gbaserver/src/dataretriever.cpp	Thu Aug 19 10:45:23 2010 +0300
+++ b/gba/gbaserver/src/dataretriever.cpp	Tue Aug 31 16:04:40 2010 +0300
@@ -21,10 +21,9 @@
 #include <commdb.h>
 #include <es_enum.h>
 #include <centralrepository.h>
-#include <cmconnectionmethodext.h>
 #include <cmconnectionmethoddef.h>
 #include <cmpluginpacketdatadef.h>
-#include <cmdestinationext.h>
+#include <cmdestination.h>
 #include <http/thttpevent.h>
 #include "dataretriever.h"
 #include "GbaCommon.h"
@@ -103,7 +102,7 @@
     {
     iHttpHandler = C3GPPBootstrapHttpHandler::NewL( this, iBootstrapCallBack );
     iInternalState = EReadyForRequest;
-    iCmManagerExt.OpenL();
+    iCmManager.OpenL();
     }
 
 
@@ -120,7 +119,7 @@
     iHTTPSession.Close();
     iConnection.Close();
     iSockServ.Close();
-    iCmManagerExt.Close();
+    iCmManager.Close();
     
     if ( iInternalState == EMakeRequestCalled )
         {
@@ -356,11 +355,11 @@
         RArray<TUint32> destIdArray;
         CleanupClosePushL( destIdArray );
         CleanupCounter++;
-        iCmManagerExt.AllDestinationsL( destIdArray );
+        iCmManager.AllDestinationsL( destIdArray );
 
         for ( TInt i = 0; i< destIdArray.Count(); i++ )
            {
-           RCmDestinationExt dest = iCmManagerExt.DestinationL( destIdArray[i] );
+           RCmDestination dest = iCmManager.DestinationL( destIdArray[i] );
            CleanupClosePushL( dest );
            CleanupCounter++;
          
@@ -409,11 +408,11 @@
     RArray<TUint32> destIdArray;
     CleanupClosePushL( destIdArray );
     CleanupCounter++;
-    iCmManagerExt.AllDestinationsL( destIdArray );
+    iCmManager.AllDestinationsL( destIdArray );
 
     for ( TInt i = 0; i< destIdArray.Count(); i++ )
          {
-         RCmDestinationExt dest = iCmManagerExt.DestinationL( destIdArray[i] );
+         RCmDestination dest = iCmManager.DestinationL( destIdArray[i] );
          CleanupClosePushL( dest );
          CleanupCounter++;