controlpanelui/src/cpprofilewrapper/src/cpprofilemodel.cpp
changeset 14 23411a3be0db
parent 12 624337f114fe
child 33 0cfa53de576f
child 40 593f946f4fec
--- a/controlpanelui/src/cpprofilewrapper/src/cpprofilemodel.cpp	Mon May 03 12:32:06 2010 +0300
+++ b/controlpanelui/src/cpprofilewrapper/src/cpprofilemodel.cpp	Fri May 14 15:53:07 2010 +0300
@@ -63,7 +63,7 @@
 /*
  * Get active profile's id
  */
-int CpProfileModel::activeProfileId()
+int CpProfileModel::activeProfileId() const
 {
     return d_ptr->activeProfileId();
 }
@@ -71,9 +71,9 @@
 /*!
      Get profile settings, store in center repository keys 
  */
-int CpProfileModel::profileSettings(int profileId, CpProfileSettings& profileSettings)
+void CpProfileModel::profileSettings(int profileId, CpProfileSettings& profileSettings)
 {
-    return d_ptr->profileSettings(profileId, profileSettings);
+    d_ptr->profileSettings(profileId, profileSettings);
 }
 
 /*!
@@ -139,9 +139,9 @@
      Return the silence mode of device, silence mode will kill all outgoing 
      audio.
  */
-bool CpProfileModel::isSilenceMode() const
+bool CpProfileModel::silenceMode() const
 {
-    return d_ptr->isSilenceMode();
+    return d_ptr->silenceMode();
 }
 
 /*!
@@ -155,9 +155,9 @@
 /*!
      Return the status of off line mode (air plane mode) of device
  */
-bool CpProfileModel::isOffLineMode() const
+bool CpProfileModel::offLineMode() const
 {
-    return d_ptr->isOffLineMode();
+    return d_ptr->offLineMode();
 }
 
 /*!