Fix wrong typo in header description 29/88929/1
authorseungha.son <seungha.son@samsung.com>
Wed, 21 Sep 2016 06:32:38 +0000 (15:32 +0900)
committerseungha.son <seungha.son@samsung.com>
Wed, 21 Sep 2016 06:33:25 +0000 (15:33 +0900)
Signed-off-by: seungha.son <seungha.son@samsung.com>
Change-Id: I9e92d2bbfbf584e0b9ab42655e7b824f355bd559

include/notification_setting.h
include/notification_setting_internal.h

index 0de72c8..ca0d066 100644 (file)
@@ -51,7 +51,7 @@ int notification_setting_get_setting(notification_setting_h *setting);
 
        ...
 
-       noti_err = notifiacation_setting_get_visibility_class(setting, &value);
+       noti_err = notification_setting_get_visibility_class(setting, &value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -89,7 +89,7 @@ int notification_setting_get_visibility_class(notification_setting_h setting, in
 
        value = true;   // or false
 
-       noti_err = notifiacation_setting_set_visibility_class(setting, value);
+       noti_err = notification_setting_set_visibility_class(setting, value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -125,7 +125,7 @@ int notification_setting_set_visibility_class(notification_setting_h setting, in
 
        ...
 
-       noti_err = notifiacation_setting_update_setting(setting);
+       noti_err = notification_setting_update_setting(setting);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -158,7 +158,7 @@ int notification_setting_update_setting(notification_setting_h setting);
 
        ...
 
-       noti_err = notifiacation_setting_free_notification(setting);
+       noti_err = notification_setting_free_notification(setting);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
index 9e565f6..f289ba3 100644 (file)
@@ -173,7 +173,7 @@ int notification_setting_get_setting_array_for_uid(notification_setting_h *setti
        int noti_err = 0;
        notification_setting_h setting = NULL;
 
-       noti_err = notifiacation_setting_get_setting_by_package_name(PACKAGE_NAME, &setting);
+       noti_err = notification_setting_get_setting_by_package_name(PACKAGE_NAME, &setting);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -210,7 +210,7 @@ int notification_setting_get_setting_by_package_name_for_uid(const char *package
 
        ...
 
-       noti_err = notifiacation_setting_get_package_name(setting, &package_name);
+       noti_err = notification_setting_get_package_name(setting, &package_name);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -245,7 +245,7 @@ int notification_setting_get_package_name(notification_setting_h setting, char *
 
        ...
 
-       noti_err = notifiacation_setting_set_package_name(setting, package_name);
+       noti_err = notification_setting_set_package_name(setting, package_name);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -280,7 +280,7 @@ int notification_setting_set_package_name(notification_setting_h setting, char *
 
        ...
 
-       noti_err = notifiacation_setting_get_allow_to_notify(setting, &value);
+       noti_err = notification_setting_get_allow_to_notify(setting, &value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -318,7 +318,7 @@ int notification_setting_get_allow_to_notify(notification_setting_h setting, boo
 
        value = true;   // or false
 
-       noti_err = notifiacation_setting_set_allow_to_notify(setting, value);
+       noti_err = notification_setting_set_allow_to_notify(setting, value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -354,7 +354,7 @@ int notification_setting_set_allow_to_notify(notification_setting_h setting, boo
 
        ...
 
-       noti_err = notifiacation_setting_get_do_not_disturb_except(setting, &value);
+       noti_err = notification_setting_get_do_not_disturb_except(setting, &value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -392,7 +392,7 @@ int notification_setting_get_do_not_disturb_except(notification_setting_h settin
 
        value = true;   // or false
 
-       noti_err = notifiacation_setting_set_do_not_disturb_except(setting, value);
+       noti_err = notification_setting_set_do_not_disturb_except(setting, value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -429,7 +429,7 @@ int notification_setting_set_do_not_disturb_except(notification_setting_h settin
 
        value = true;   // or false
 
-       noti_err = notifiacation_setting_get_pop_up_notification(setting, value);
+       noti_err = notification_setting_get_pop_up_notification(setting, value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -467,7 +467,7 @@ int notification_setting_get_pop_up_notification(notification_setting_h setting,
 
        value = true;   // or false
 
-       noti_err = notifiacation_setting_get_pop_up_notification(setting, value);
+       noti_err = notification_setting_get_pop_up_notification(setting, value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -503,7 +503,7 @@ int notification_setting_set_pop_up_notification(notification_setting_h setting,
 
        ...
 
-       noti_err = notifiacation_setting_get_lock_screen_content(setting, &level);
+       noti_err = notification_setting_get_lock_screen_content(setting, &level);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -542,7 +542,7 @@ int notification_setting_get_lock_screen_content(notification_setting_h setting,
 
        level = SHOW_ALL_CONTENT;       // or HIDE_SENSITIVE_CONTENT or DO_NOT_SHOW_NOTIFICATIONS;
 
-       noti_err = notifiacation_setting_get_lock_screen_content(setting, level);
+       noti_err = notification_setting_get_lock_screen_content(setting, level);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -613,7 +613,7 @@ int notification_system_setting_load_system_setting_for_uid(notification_system_
 
        ...
 
-       noti_err = notifiacation_system_setting_update_system_setting(setting);
+       noti_err = notification_system_setting_update_system_setting(setting);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -647,7 +647,7 @@ int notification_system_setting_update_system_setting_for_uid(notification_syste
 
        ...
 
-       noti_err = notifiacation_system_setting_free_system_setting(setting);
+       noti_err = notification_system_setting_free_system_setting(setting);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -681,7 +681,7 @@ int notification_system_setting_free_system_setting(notification_system_setting_
 
        ...
 
-       noti_err = notifiacation_system_setting_get_do_not_disturb_except(setting, &value);
+       noti_err = notification_system_setting_get_do_not_disturb_except(setting, &value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -720,7 +720,7 @@ int notification_system_setting_get_do_not_disturb(notification_system_setting_h
 
        value = true;   // or false
 
-       noti_err = notifiacation_setting_set_do_not_disturb_except(setting, value);
+       noti_err = notification_setting_set_do_not_disturb_except(setting, value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -755,7 +755,7 @@ int notification_system_setting_set_do_not_disturb(notification_system_setting_h
 
        ...
 
-       noti_err = notifiacation_system_setting_get_visibility_class(setting, &value);
+       noti_err = notification_system_setting_get_visibility_class(setting, &value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -793,7 +793,7 @@ int notification_system_setting_get_visibility_class(notification_system_setting
 
        value = true;   // or false
 
-       noti_err = notifiacation_setting_set_visibility_class(setting, value);
+       noti_err = notification_setting_set_visibility_class(setting, value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -828,7 +828,7 @@ int notification_system_setting_set_visibility_class(notification_system_setting
 
        ...
 
-       noti_err = notifiacation_system_setting_dnd_schedule_get_enabled(setting, &value);
+       noti_err = notification_system_setting_dnd_schedule_get_enabled(setting, &value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -866,7 +866,7 @@ int notification_system_setting_dnd_schedule_get_enabled(notification_system_set
 
        value = true;   // or false
 
-       noti_err = notifiacation_system_setting_dnd_schedule_set_enabled(setting, &value);
+       noti_err = notification_system_setting_dnd_schedule_set_enabled(setting, &value);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -902,7 +902,7 @@ int notification_system_setting_dnd_schedule_set_enabled(notification_system_set
 
        ...
 
-       noti_err = notifiacation_system_setting_dnd_schedule_get_day(setting, &day);
+       noti_err = notification_system_setting_dnd_schedule_get_day(setting, &day);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -941,7 +941,7 @@ int notification_system_setting_dnd_schedule_get_day(notification_system_setting
 
        day = DND_SCHEDULE_WEEK_FLAG_SUNDAY;
 
-       noti_err = notifiacation_system_setting_dnd_schedule_set_day(setting, day);
+       noti_err = notification_system_setting_dnd_schedule_set_day(setting, day);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -978,7 +978,7 @@ int notification_system_setting_dnd_schedule_set_day(notification_system_setting
 
        ...
 
-       noti_err = notifiacation_system_setting_dnd_schedule_get_start_time(setting, &hour, &min);
+       noti_err = notification_system_setting_dnd_schedule_get_start_time(setting, &hour, &min);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -1018,7 +1018,7 @@ int notification_system_setting_dnd_schedule_get_start_time(notification_system_
        hour = START_HOUR;      // 0 ~ 23
        min = START_MIN         // 0 ~ 59
 
-       noti_err = notifiacation_system_setting_dnd_schedule_set_start_time(setting, hour, min);
+       noti_err = notification_system_setting_dnd_schedule_set_start_time(setting, hour, min);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -1055,7 +1055,7 @@ int notification_system_setting_dnd_schedule_set_start_time(notification_system_
 
        ...
 
-       noti_err = notifiacation_system_setting_dnd_schedule_get_end_time(setting, &hour, &min);
+       noti_err = notification_system_setting_dnd_schedule_get_end_time(setting, &hour, &min);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -1095,7 +1095,7 @@ int notification_system_setting_dnd_schedule_get_end_time(notification_system_se
        hour = START_HOUR;      // 0 ~ 23
        min = START_MIN         // 0 ~ 59
 
-       noti_err = notifiacation_system_setting_dnd_schedule_set_end_time(setting, hour, min);
+       noti_err = notification_system_setting_dnd_schedule_set_end_time(setting, hour, min);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -1131,7 +1131,7 @@ int notification_system_setting_dnd_schedule_set_end_time(notification_system_se
 
        ...
 
-       noti_err = notifiacation_system_setting_get_lock_screen_content(setting, &level);
+       noti_err = notification_system_setting_get_lock_screen_content(setting, &level);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }
@@ -1169,7 +1169,7 @@ int notification_system_setting_get_lock_screen_content(notification_system_sett
 
        level = SHOW_ALL_CONTENT;       // or HIDE_SENSITIVE_CONTENT or DO_NOT_SHOW_NOTIFICATIONS;
 
-       noti_err = notifiacation_system_setting_set_lock_screen_content(setting, &level);
+       noti_err = notification_system_setting_set_lock_screen_content(setting, &level);
        if (noti_err != NOTIFICATION_ERROR_NONE) {
                return;
        }