summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseungha.son <seungha.son@samsung.com>2016-09-21 15:32:38 +0900
committerseungha.son <seungha.son@samsung.com>2016-09-21 15:33:25 +0900
commit539c79803094125093ef0cf787bae92d4bac6427 (patch)
tree15c483058b64d0f40740e9b434894ed1af7dfdef
parent51252bff3893353d9386db86cdce77c25c3cc29f (diff)
downloadnotification-539c79803094125093ef0cf787bae92d4bac6427.tar.gz
notification-539c79803094125093ef0cf787bae92d4bac6427.tar.bz2
notification-539c79803094125093ef0cf787bae92d4bac6427.zip
Fix wrong typo in header description
Signed-off-by: seungha.son <seungha.son@samsung.com> Change-Id: I9e92d2bbfbf584e0b9ab42655e7b824f355bd559
-rw-r--r--include/notification_setting.h8
-rw-r--r--include/notification_setting_internal.h54
2 files changed, 31 insertions, 31 deletions
diff --git a/include/notification_setting.h b/include/notification_setting.h
index 0de72c8..ca0d066 100644
--- a/include/notification_setting.h
+++ b/include/notification_setting.h
@@ -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;
}
diff --git a/include/notification_setting_internal.h b/include/notification_setting_internal.h
index 9e565f6..f289ba3 100644
--- a/include/notification_setting_internal.h
+++ b/include/notification_setting_internal.h
@@ -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;
}