From: Jiwoong Im Date: Tue, 26 Apr 2016 05:46:28 +0000 (+0900) Subject: fix doxygen comments X-Git-Tag: submit/tizen/20170725.231500~6^2~69 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=86e1f9791c101f6569aa0133a3e279028ebd37fd;p=platform%2Fcore%2Fapi%2Fpreference.git fix doxygen comments Change-Id: I0842e20cde14ffd16dda4e78a957cdd945828e25 Signed-off-by: Jiwoong Im --- 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);