summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiwoong Im <jiwoong.im@samsung.com>2016-04-26 14:46:28 +0900
committerJiwoong Im <jiwoong.im@samsung.com>2016-04-26 14:58:09 +0900
commit86e1f9791c101f6569aa0133a3e279028ebd37fd (patch)
tree90a057fa331217057fe645269667ba77d96a1d2f
parentc4ce0c2e84dc05f4776d77d6235132a9c787434a (diff)
downloadapplication-86e1f9791c101f6569aa0133a3e279028ebd37fd.tar.gz
application-86e1f9791c101f6569aa0133a3e279028ebd37fd.tar.bz2
application-86e1f9791c101f6569aa0133a3e279028ebd37fd.zip
Change-Id: I0842e20cde14ffd16dda4e78a957cdd945828e25 Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
-rw-r--r--include/app_alarm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/app_alarm.h b/include/app_alarm.h
index 8aac216..c274cfe 100644
--- a/include/app_alarm.h
+++ b/include/app_alarm.h
@@ -415,7 +415,7 @@ int alarm_get_app_control(int alarm_id, app_control_h *app_control);
* @privlevel public
* @privilege %http://tizen.org/privilege/alarm.set
* @remarks The @a alarm_id must be id of alarm which will launch global application.
- * The function returns an error (error code #ALARM_ERROR_NOT_PERMITTED) if it is not.
+ * The function returns an error (error code #ALARM_ERROR_NOT_PERMITTED_APP) if it is not.
* Note that the application which is launched by global alarm runs in the user session that is logined currently.
* It doesn't run in the session for the user who registers the global alarm.
* So, If the application uses application's private data for each user to handling the app_control for the alarm, it might not show proper data to the user.
@@ -427,7 +427,7 @@ int alarm_get_app_control(int alarm_id, app_control_h *app_control);
* otherwise a negative error value
* @retval #ALARM_ERROR_NONE Successful
* @retval #ALARM_ERROR_INVALID_PARAMETER Invalid parameter
- * @retval #ALARM_ERROR_NOT_PERMITTED @a alarm_id is not permitted.
+ * @retval #ALARM_ERROR_NOT_PERMITTED_APP @a alarm_id is not permitted
* @retval #ALARM_ERROR_PERMISSION_DENIED Permission denied
* @see alarm_schedule_at_date()
* @see alarm_schedule_after_delay()
@@ -442,13 +442,13 @@ int alarm_set_global(int alarm_id, bool global);
* @privlevel public
* @privilege %http://tizen.org/privilege/alarm.get
* @param[in] alarm_id The alarm ID uniquely identifies an alarm
- * @param[out] global Whether the alarm will launch global application or not.
+ * @param[out] global Whether the alarm will launch global application or not
* @return @c 0 on success,
* otherwise a negative error value
* @retval #ALARM_ERROR_NONE Successful
* @retval #ALARM_ERROR_INVALID_PARAMETER Invalid parameter
* @retval #ALARM_ERROR_PERMISSION_DENIED Permission denied
- * @see alarm_set_global();
+ * @see alarm_set_global()
*/
int alarm_get_global(int alarm_id, bool *global);