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