phonebookui/phonebookservices/src/cntservices.cpp
changeset 72 6abfb1094884
parent 66 554fe4dbbb59
child 81 640d30f4fb64
--- a/phonebookui/phonebookservices/src/cntservices.cpp	Thu Sep 09 16:37:32 2010 +0300
+++ b/phonebookui/phonebookservices/src/cntservices.cpp	Tue Sep 21 17:07:25 2010 +0300
@@ -42,8 +42,7 @@
 
 CntServices::CntServices() :
 mViewManager(NULL),
-mCurrentProvider(NULL),
-mIsQuittable(true)
+mCurrentProvider(NULL)
 {
     CNT_ENTRY
 
@@ -411,23 +410,12 @@
     CNT_EXIT
 }
 
-void CntServices::setQuittable(bool quittable)
-{
-    mIsQuittable = quittable;
-}
-
 void CntServices::quitApp()
 {
-    CNT_ENTRY
-   
-    // Only embedded applications should be exited once a client
-    // disconnects. At the moments QtHighWay has unresolved issues
-    // when closing non-embedded applications. Error ou1cimx1#472852
-    // has more info
-    if ( mIsQuittable ) 
-    {
-       qApp->quit();
-    }   
+    CNT_ENTRY   
+    
+    qApp->quit();
+    
     CNT_EXIT
 }