Merge "Update doxygen" into tizen
authorMyungKi Lee <mk5004.lee@samsung.com>
Thu, 14 Nov 2019 01:48:11 +0000 (01:48 +0000)
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>
Thu, 14 Nov 2019 01:48:11 +0000 (01:48 +0000)
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 8413c33..f387349 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_NOT_SUPPORTED Not supported
  * @retval #WIDGET_ERROR_INVALID_PARAMETER Invalid parameter
  * @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);