convergedcallengine/serviceselector/src/cssconnectionhandler.cpp
changeset 12 ae8abd0db65c
parent 0 ff3b6d0fd310
child 15 d7fc66ccd6fb
--- a/convergedcallengine/serviceselector/src/cssconnectionhandler.cpp	Tue Feb 02 01:11:09 2010 +0200
+++ b/convergedcallengine/serviceselector/src/cssconnectionhandler.cpp	Fri Mar 19 09:40:14 2010 +0200
@@ -57,13 +57,19 @@
 //
 void CSsConnectionHandler::ConstructL()
     {
-    iCch = CCch::NewL(); 
+    // <-- QT PHONE START -->
+    //iCch = CCch::NewL(); 
+    // <-- QT PHONE END -->
+
     }
 
 // Destructor
 CSsConnectionHandler::~CSsConnectionHandler()
     {
-    delete iCch;
+    // <-- QT PHONE START -->
+    //delete iCch;
+    // <-- QT PHONE END-->
+
     }
 
 // -----------------------------------------------------------------------------
@@ -73,11 +79,14 @@
 //
 TBool CSsConnectionHandler::IsVoipServiceRegistered
         ( 
-        TUint aServiceId 
+        TUint /*aServiceId */
         ) const
     {
+   
+    TBool registered( EFalse );
+    // <-- QT PHONE START -->
+/*
     TCchServiceStatus serviceStatus;
-    TBool registered( EFalse );
     CCchService* service = iCch->GetService( aServiceId );
     if ( service )
         {
@@ -90,6 +99,10 @@
                 (TInt) aServiceId,
                 (TInt) ECCHEnabled == serviceStatus.State(),
                 (TInt) serviceStatus.Error());
+                */
+                
+    // <-- QT PHONE END-->
+
      
     return registered;        
     }