summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSukHyung, Kang <shine.kang@samsung.com>2019-11-13 17:19:45 +0900
committerSukHyung, Kang <shine.kang@samsung.com>2019-11-13 17:19:45 +0900
commit3af2cf5dc781f226121c3c7c62c7f40952deb0b1 (patch)
treeef69494241404929e1ba3a131042ca6181c5fc38
parentb1e3bc48a7ce2352771082591b2680c6a3000313 (diff)
downloadappcore-widget-3af2cf5dc781f226121c3c7c62c7f40952deb0b1.tar.gz
appcore-widget-3af2cf5dc781f226121c3c7c62c7f40952deb0b1.tar.bz2
appcore-widget-3af2cf5dc781f226121c3c7c62c7f40952deb0b1.zip
Fix api reference for appcore widget
Change-Id: I1de112889084b965f6593528525d6f17b2e78206 Signed-off-by: SukHyung, Kang <shine.kang@samsung.com>
-rwxr-xr-xdoc/appcore-widget_doc.h4
-rwxr-xr-xinclude/widget_app.h6
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);