Remove 'Screen lock sound' 66/251666/1
authorkiso.chang <kiso.chang@samsung.com>
Mon, 18 Jan 2021 08:20:35 +0000 (17:20 +0900)
committerkiso.chang <kiso.chang@samsung.com>
Mon, 18 Jan 2021 08:20:50 +0000 (17:20 +0900)
- from Sound > Other sounds

Change-Id: Ia676e9075f792d774142201509f14e145ed6d9e2
Signed-off-by: kiso.chang <kiso.chang@samsung.com>
setting-profile/include/setting-profile-other-sounds.h
setting-profile/src/setting-profile-other-sounds-view.c
setting-profile/src/setting-profile-other-sounds.c

index dfbf04b966bc847945d7ab1abcf275acbfb4ed53..03e7a6ba990e1ce6a88d3fa262e30eb781fadd5f 100644 (file)
 #include <stdbool.h>
 
 bool setting_profile_other_sound_touch_sound_enabled();
-
 void setting_profile_other_sound_enable_touch_sound(bool val);
 
-bool setting_profile_other_sound_screen_lock_sound_enabled();
-
-void setting_profile_other_sound_enable_screen_lock_sound(bool val);
-
 bool setting_profile_other_sound_keyboard_sound_enabled();
-
 void setting_profile_other_sound_enable_keyboard_sound(bool val);
 
 #endif /* end of include guard: SETTING_PROFILE_OTHER_SOUNDS_H */
index 0a4400a62277392d84035ab80bcf524e76c81f5d..cab8290c8a654979103c0d2a213ba3f5f76e8703 100644 (file)
@@ -44,10 +44,6 @@ static struct item items[] = {
                "Touch sound", "Play sound when making screen selection",
                setting_profile_other_sound_touch_sound_enabled, setting_profile_other_sound_enable_touch_sound
        },
-       {
-               "Screen lock sound", "Play sounds when locking and unlocking screen",
-               setting_profile_other_sound_screen_lock_sound_enabled, setting_profile_other_sound_enable_screen_lock_sound
-       },
        {
                "Keyboard sound", "Sound feedback for system keyboard",
                setting_profile_other_sound_keyboard_sound_enabled, setting_profile_other_sound_enable_keyboard_sound
index 690c10fdef963a9507dc643d570940791e5cd2a2..af8d3744ce19914a975c5aee79fb76a4e5c10bad 100644 (file)
@@ -43,16 +43,6 @@ void setting_profile_other_sound_enable_touch_sound(bool val)
        setting_vconf_set_bool(VCONFKEY_SETAPPL_TOUCH_SOUNDS_BOOL, val);
 }
 
-bool setting_profile_other_sound_screen_lock_sound_enabled()
-{
-       return setting_vconf_get_bool(VCONFKEY_SETAPPL_SOUND_LOCK_BOOL);
-}
-
-void setting_profile_other_sound_enable_screen_lock_sound(bool val)
-{
-       setting_vconf_set_bool(VCONFKEY_SETAPPL_SOUND_LOCK_BOOL, val);
-}
-
 bool setting_profile_other_sound_keyboard_sound_enabled()
 {
        return setting_vconf_get_bool(VCONFKEY_SETAPPL_BUTTON_SOUNDS_BOOL);