satui/satapp/src/satappmainhandler.cpp
changeset 42 35488577e233
parent 35 6aefa3341fcc
child 46 2fa1fa551b0b
--- a/satui/satapp/src/satappmainhandler.cpp	Tue Aug 10 13:19:41 2010 +0300
+++ b/satui/satapp/src/satappmainhandler.cpp	Mon Aug 23 15:50:31 2010 +0300
@@ -23,7 +23,7 @@
 
 // symbian
 #include <centralrepository.h>
-#include <ProfileEngineSDKCRKeys.h>
+#include <coreapplicationuissdkcrkeys.h>
 
 #include "satappmainhandler.h"
 #include "satappserverdispatcher.h"
@@ -266,17 +266,18 @@
     qDebug("SATAPP: SatAppMainHandler::isOffline >");
     TInt profileId(0);
     CRepository* cr (NULL);
-    TRAPD(err, cr = CRepository::NewL(KCRUidProfileEngine));
+    TRAPD(err, cr = CRepository::NewL(KCRUidCoreApplicationUIs));
     if ( KErrNone == err )
     {
         // Get the ID of the currently active profile:
-        const TInt error = cr->Get(KProEngActiveProfile, profileId);
+        const TInt error = 
+            cr->Get(KCoreAppUIsNetworkConnectionAllowed, profileId);
         qDebug("SATAPP: SatAppMainHandler::isOffline get active \
                 profile error=%d",error);
         delete cr;
     }
     qDebug("SATAPP: SatAppMainHandler::isOffline< profileId = %d",profileId);
-    return ( KSatActiveProfileOffline == profileId );
+    return ( ECoreAppUIsNetworkConnectionNotAllowed == profileId );
 }
 
 // ----------------------------------------------------------------------------