controlpanelui/src/cpserviceprovider/src/cpservicemainwindow.cpp
changeset 37 cb294e641644
parent 25 19394c261aa5
--- a/controlpanelui/src/cpserviceprovider/src/cpservicemainwindow.cpp	Wed Aug 18 09:49:35 2010 +0300
+++ b/controlpanelui/src/cpserviceprovider/src/cpservicemainwindow.cpp	Thu Sep 02 20:27:31 2010 +0300
@@ -24,17 +24,20 @@
 CpServiceMainWindow::CpServiceMainWindow(QWidget *parent /* = 0*/)
 : HbMainWindow(parent), mLauncherService(0), mPreviousView(0)
 {
-    CPSP_LOG("CpServiceMainWindow Constructing...");
+    CPSP_LOG_FUNC_ENTRY("CpServiceMainWindow::CpServiceMainWindow")
+        
     mLauncherService = new CpLauncherService(this);
 }
 
 CpServiceMainWindow::~CpServiceMainWindow()
 {
-    CPSP_LOG("CpServiceMainWindow Destructing...");
+    CPSP_LOG_FUNC_ENTRY("CpServiceMainWindow::~CpServiceMainWindow")
 }
 
 void CpServiceMainWindow::setSettingView(CpBaseSettingView *settingView)
 {
+    CPSP_LOG_FUNC_ENTRY("CpServiceMainWindow::setSettingView")
+    
     mSettingViewPointer = settingView;
     
     mPreviousView = currentView();
@@ -46,7 +49,7 @@
 
 void CpServiceMainWindow::quit()
 {
-    CPSP_LOG("CpServiceMainWindow::quit()");
+    CPSP_LOG_FUNC_ENTRY("CpServiceMainWindow::quit");
     
     closeSettingView();
     
@@ -65,6 +68,8 @@
 
 void CpServiceMainWindow::closeSettingView()
 {
+    CPSP_LOG_FUNC_ENTRY("CpServiceMainWindow::closeSettingView")
+    
     if (mSettingViewPointer) {
         removeView(mSettingViewPointer);
         mSettingViewPointer->deleteLater();