summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/minicontrol-provider.h4
-rw-r--r--include/minicontrol-type.h4
-rw-r--r--include/minicontrol-viewer.h6
3 files changed, 7 insertions, 7 deletions
diff --git a/include/minicontrol-provider.h b/include/minicontrol-provider.h
index c1721cd..b4fb2bf 100644
--- a/include/minicontrol-provider.h
+++ b/include/minicontrol-provider.h
@@ -62,10 +62,10 @@ typedef void (*minicontrol_event_cb)(minicontrol_viewer_event_e event_type, bund
* @param[in] callback A callback function for events originated by minicontrol viewer
* @return Evas object of minicontrol. NULL on error
* @exception #MINICONTROL_ERROR_NONE Success
+ * @exception #MINICONTROL_ERROR_NOT_SUPPORTED Not supported
* @exception #MINICONTROL_ERROR_INVALID_PARAMETER Invalid argument
* @exception #MINICONTROL_ERROR_ELM_FAILURE Some error occurred when creating a minicontrol window
* @exception #MINICONTROL_ERROR_OUT_OF_MEMORY Out of memory
- * @exception #MINICONTROL_ERROR_NOT_SUPPORTED Not supported
* @see #minicontrol_target_viewer_e
* @see #minicontrol_event_cb
* @see get_last_result()
@@ -82,8 +82,8 @@ Evas_Object *minicontrol_create_window(const char *name, minicontrol_target_view
* @return #MINICONTROL_ERROR_NONE on success,
* otherwise an error code on failure
* @retval #MINICONTROL_ERROR_NONE Success
- * @retval #MINICONTROL_ERROR_INVALID_PARAMETER Invalid argument
* @retval #MINICONTROL_ERROR_NOT_SUPPORTED Not supported
+ * @retval #MINICONTROL_ERROR_INVALID_PARAMETER Invalid argument
* @see #minicontrol_provider_event_e
* @see #minicontrol_create_window
*/
diff --git a/include/minicontrol-type.h b/include/minicontrol-type.h
index ef29abc..8ad3114 100644
--- a/include/minicontrol-type.h
+++ b/include/minicontrol-type.h
@@ -105,7 +105,7 @@ typedef enum {
} minicontrol_event_e;
/**
- * @brief Enumeration for types of events which will be sent by minicontrol_send_event.
+ * @brief Enumeration for types of events which will be sent by minicontrol_send_event().
* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
*/
typedef enum {
@@ -114,7 +114,7 @@ typedef enum {
} minicontrol_provider_event_e;
/**
- * @brief Enumeration for types of events which will be sent by minicontrol_viewer_send_event.
+ * @brief Enumeration for types of events which will be sent by minicontrol_viewer_send_event().
* @since_tizen @if MOBILE 2.4 @elseif WEARABLE 5.0 @endif
*/
typedef enum {
diff --git a/include/minicontrol-viewer.h b/include/minicontrol-viewer.h
index 67531b2..ed72f80 100644
--- a/include/minicontrol-viewer.h
+++ b/include/minicontrol-viewer.h
@@ -47,9 +47,9 @@ extern "C" {
* @param[in] minicontrol_name Name of minicontrol
* @return Evas object of minicontrol. NULL on error
* @exception #MINICONTROL_ERROR_NONE Success
+ * @exception #MINICONTROL_ERROR_NOT_SUPPORTED Not supported
* @exception #MINICONTROL_ERROR_INVALID_PARAMETER Invalid argument
* @exception #MINICONTROL_ERROR_ELM_FAILURE Some error occurred when creating a minicontrol window
- * @exception #MINICONTROL_ERROR_NOT_SUPPORTED Not supported
* @see get_last_result()
*/
Evas_Object *minicontrol_viewer_add(Evas_Object *parent, const char *minicontrol_name);
@@ -63,8 +63,8 @@ Evas_Object *minicontrol_viewer_add(Evas_Object *parent, const char *minicontrol
* @return #MINICONTROL_ERROR_NONE on success,
* otherwise an error code on failure
* @retval #MINICONTROL_ERROR_NONE Success
- * @retval #MINICONTROL_ERROR_INVALID_PARAMETER Invalid argument
* @retval #MINICONTROL_ERROR_NOT_SUPPORTED Not supported
+ * @retval #MINICONTROL_ERROR_INVALID_PARAMETER Invalid argument
* @see #minicontrol_viewer_event_e
*/
int minicontrol_viewer_send_event(const char *minicontrol_name, minicontrol_viewer_event_e event, bundle *event_arg);
@@ -91,10 +91,10 @@ typedef void (*minicontrol_viewer_event_cb)(minicontrol_event_e event, const cha
* @return #MINICONTROL_ERROR_NONE on success,
* otherwise an error code on failure
* @retval #MINICONTROL_ERROR_NONE Success
+ * @retval #MINICONTROL_ERROR_NOT_SUPPORTED Not supported
* @retval #MINICONTROL_ERROR_INVALID_PARAMETER Invalid argument
* @retval #MINICONTROL_ERROR_IPC_FAILURE IPC failure
* @retval #MINICONTROL_ERROR_OUT_OF_MEMORY Out of memory
- * @retval #MINICONTROL_ERROR_NOT_SUPPORTED Not supported
* @see #minicontrol_viewer_unset_event_cb
* @see #minicontrol_viewer_event_cb
*/