Fix typo and coding style 03/88903/2
authorMyungki Lee <mk5004.lee@samsung.com>
Wed, 21 Sep 2016 05:56:24 +0000 (14:56 +0900)
committerMyungki Lee <mk5004.lee@samsung.com>
Wed, 21 Sep 2016 05:56:24 +0000 (14:56 +0900)
Change-Id: I9aa0932bd83ff09ce0817662e8190aef23d3c2ff
Signed-off-by: Myungki Lee <mk5004.lee@samsung.com>
include/notification_ipc.h
include/notification_setting_internal.h

index dcde048..dc3df5b 100755 (executable)
@@ -89,7 +89,7 @@ int notification_ipc_request_create_from_package_template(notification_h noti,
                const char *pkgname, const char *template_name);
 int notification_ipc_get_noti_block_state(const char *pkgname, int *do_not_disturb, int *do_not_disturb_except,
                                          int *allow_to_notify, uid_t uid);
-GVariant * notification_ipc_make_gvariant_from_dnd_allow_exception(
+GVariant *notification_ipc_make_gvariant_from_dnd_allow_exception(
                struct notification_system_setting_dnd_allow_exception *dnd_allow_exception);
 int notification_ipc_make_dnd_allow_exception_from_gvariant(
                struct notification_system_setting_dnd_allow_exception *dnd_allow_exception,
index cbe0cae..9e565f6 100644 (file)
@@ -577,7 +577,7 @@ int notification_setting_set_lock_screen_content(notification_setting_h setting,
 
        ...
 
-       noti_err = notifiacation_system_setting_load_system_setting(setting);
+       noti_err = notification_system_setting_load_system_setting(&setting);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -1205,7 +1205,7 @@ int notification_system_setting_set_lock_screen_content(notification_system_sett
        int value;
        notification_system_setting_h setting = NULL;
        ...
-       noti_err = notifiacation_system_setting_load_system_setting(&setting);
+       noti_err = notification_system_setting_load_system_setting(&setting);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -1247,7 +1247,7 @@ int notification_system_setting_get_dnd_allow_exceptions(notification_system_set
        int value = 0;
        notification_system_setting_h setting = NULL;
        ...
-       noti_err = notifiacation_system_setting_load_system_setting(&setting);
+       noti_err = notification_system_setting_load_system_setting(&setting);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }