From 3af2cf5dc781f226121c3c7c62c7f40952deb0b1 Mon Sep 17 00:00:00 2001 From: "SukHyung, Kang" Date: Wed, 13 Nov 2019 17:19:45 +0900 Subject: [PATCH] Fix api reference for appcore widget Change-Id: I1de112889084b965f6593528525d6f17b2e78206 Signed-off-by: SukHyung, Kang --- doc/appcore-widget_doc.h | 4 ++-- include/widget_app.h | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/appcore-widget_doc.h b/doc/appcore-widget_doc.h index 0dbc9a9..0e540a4 100755 --- a/doc/appcore-widget_doc.h +++ b/doc/appcore-widget_doc.h @@ -63,9 +63,9 @@ * * @subsection CAPI_WIDGET_APP_MODULE_SYSTEM_EVENT Registering Callbacks for System Events * Tizen widget applications can receive system events with widget_app_add_event_handler() API. - * The type of system events that can be received are same as Tizen UI applications except for APP_EVENT_DEVICE_ORIENTATION_CHANGED. + * The type of system events that can be received are same as Tizen UI applications except for #APP_EVENT_DEVICE_ORIENTATION_CHANGED. * See @ref CAPI_APPLICATION_MODULE. - * The event for APP_EVENT_DEVICE_ORIENTATION_CHANGED is not supported in this module. + * The event for #APP_EVENT_DEVICE_ORIENTATION_CHANGED is not supported in this module. * @subsection CAPI_WIDGET_APP_INSTNACE_STATE_CHANGE_EVENT Registering callbacks for instance state change events * As for Tizen widget instance states, it is somewhat similar to Tizen application states. diff --git a/include/widget_app.h b/include/widget_app.h index 35d864d..6b4d1d9 100755 --- a/include/widget_app.h +++ b/include/widget_app.h @@ -290,7 +290,7 @@ int widget_app_foreach_context(widget_context_cb callback, void *data); * @brief Adds the system event handler. * @since_tizen 2.3.1 * @param[out] event_handler The event handler - * @param[in] event_type The system event type. APP_EVENT_DEVICE_ORIENTATION_CHANGED is not supported + * @param[in] event_type The system event type. #APP_EVENT_DEVICE_ORIENTATION_CHANGED is not supported * @param[in] callback The callback function * @param[in] user_data The user data to be passed to the callback function * @return #WIDGET_ERROR_NONE on success, @@ -302,7 +302,7 @@ int widget_app_foreach_context(widget_context_cb callback, void *data); * @retval #WIDGET_ERROR_FAULT Unrecoverable error * @see app_event_type_e * @see app_event_cb() - * @see watch_app_remove_event_handler() + * @see widget_app_remove_event_handler() */ int widget_app_add_event_handler(app_event_handler_h *event_handler, app_event_type_e event_type, app_event_cb callback, void *user_data); @@ -317,7 +317,7 @@ int widget_app_add_event_handler(app_event_handler_h *event_handler, app_event_t * @retval #WIDGET_ERROR_INVALID_PARAMETER Invalid parameter * @retval #WIDGET_ERROR_NOT_SUPPORTED Not supported * @retval #WIDGET_ERROR_FAULT Unrecoverable error - * @see watch_app_add_event_handler() + * @see widget_app_add_event_handler() */ int widget_app_remove_event_handler(app_event_handler_h event_handler); -- 2.7.4