Fix api reference for appcore widget 77/217677/1
authorSukHyung, Kang <shine.kang@samsung.com>
Wed, 13 Nov 2019 08:19:45 +0000 (17:19 +0900)
committerSukHyung, Kang <shine.kang@samsung.com>
Wed, 13 Nov 2019 08:19:45 +0000 (17:19 +0900)
Change-Id: I1de112889084b965f6593528525d6f17b2e78206
Signed-off-by: SukHyung, Kang <shine.kang@samsung.com>
doc/appcore-widget_doc.h
include/widget_app.h

index 0dbc9a9..0e540a4 100755 (executable)
@@ -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.
index 35d864d..6b4d1d9 100755 (executable)
@@ -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);