phoneengine/phonemodel/src/cpeclientservices.cpp
changeset 21 92ab7f8d0eab
parent 0 5f000ab63145
child 51 f39ed5e045e0
child 62 5266b1f337bd
--- a/phoneengine/phonemodel/src/cpeclientservices.cpp	Tue Feb 02 00:10:04 2010 +0200
+++ b/phoneengine/phonemodel/src/cpeclientservices.cpp	Fri Mar 19 09:28:42 2010 +0200
@@ -26,9 +26,9 @@
 #include "mpecallhandling.h"
 #include "mpephonemodelinternal.h"
 #include <apgtask.h>
-#include <CPhCltCallNotify.h>
-#include <CPhCltEmergencyCall.h>
-#include <CPhCltUssd.h>
+#include <cphcltcallnotify.h>
+#include <cphcltemergencycall.h>
+#include <cphcltussd.h>
 #include <mpedatastore.h>
 #include <talogger.h>
 
@@ -64,9 +64,9 @@
 
     User::LeaveIfError( iPhoneServer.Connect( ) );
 
-	// Need to call CreateAll so that Phone Server creates all managers
-	// (f.ex. USSD manager). Otherwise USSD requests/notifications don't
-	// get through unless USSD request is sent from Mobile Terminal first.
+    // Need to call CreateAll so that Phone Server creates all managers
+    // (f.ex. USSD manager). Otherwise USSD requests/notifications don't
+    // get through unless USSD request is sent from Mobile Terminal first.
     TRequestStatus phoneServerStatus;
     iPhoneServer.CreateAll( phoneServerStatus );
     User::WaitForRequest( phoneServerStatus );
@@ -85,16 +85,16 @@
         iModel, 
         *iCallNotifier ); 
 
-	iClientCommandHandlerMonitor = CPEClientCommandHandlerMonitor::NewL( 
-	    iCallHandling, 
-	    iMessageHandler, 
-	    iModel, 
-	    iPhoneServer,
-	    iManualCallControlHandler );
-	    
-	iDeviceModeHandler = CPEDeviceModeHandler::NewL( 
-	    iCallHandling, 
-	    iMessageHandler );	    
+    iClientCommandHandlerMonitor = CPEClientCommandHandlerMonitor::NewL( 
+        iCallHandling, 
+        iMessageHandler, 
+        iModel, 
+        iPhoneServer,
+        iManualCallControlHandler );
+        
+    iDeviceModeHandler = CPEDeviceModeHandler::NewL( 
+        iCallHandling, 
+        iMessageHandler );      
     }
 
 // -----------------------------------------------------------------------------
@@ -110,11 +110,11 @@
     {
     TEFLOGSTRING( KTAOBJECT, "PE CPEClientServices::NewL()" );
     
-	CPEClientServices* self = new ( ELeave ) CPEClientServices( 
-	    aModel, 
-	    aMessageHandler, 
-	    aCallHandling,
-	    aManualCallControlHandler );
+    CPEClientServices* self = new ( ELeave ) CPEClientServices( 
+        aModel, 
+        aMessageHandler, 
+        aCallHandling,
+        aManualCallControlHandler );
 
     CleanupStack::PushL( self );
     self->ConstructL();