diff -r 624337f114fe -r 36aa4756ee82 controlpanelui/src/cpprofilewrapper/src/cpprofilemodel.cpp --- 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 13:21:08 2010 +0800 @@ -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(); } /*!