diff -r feebad15db8c -r c826656d6714 camerauis/cameraxui/cxengine/src/cxesoundplayersymbian.cpp --- a/camerauis/cameraxui/cxengine/src/cxesoundplayersymbian.cpp Thu Jul 15 01:53:45 2010 +0300 +++ b/camerauis/cameraxui/cxengine/src/cxesoundplayersymbian.cpp Fri Aug 06 10:03:37 2010 +0300 @@ -259,12 +259,8 @@ CX_DEBUG(("Warning tones enabled [%d]", value.toInt())); // check whether capture sound is forced or not - int forced = 0; - mSettings.get(CxeSettingIds::CAPTURE_SOUND_ALWAYS_ON, forced); - // 0 -> capture sound not forced - // 1 -> capture sound forced on - mCaptureSoundForced = (forced == 1); - CX_DEBUG(("Capture sound forced [%d]", forced)); + mCaptureSoundForced = mSettings.get(CxeSettingIds::CAPTURE_SOUND_ALWAYS_ON, false); + CX_DEBUG(("Capture sound forced [%d]", mCaptureSoundForced)); // use sound if forced on or warningtones are enabled mUseSound = mCaptureSoundForced || warningTonesEnabled;