Fix all doc errors. 03/99203/1
authorHermet Park <hermet@hermet.pe.kr>
Tue, 22 Nov 2016 07:07:37 +0000 (16:07 +0900)
committerHermet Park <hermet@hermet.pe.kr>
Tue, 22 Nov 2016 07:07:37 +0000 (16:07 +0900)
Change-Id: I3698d8e38a185c397334d96b5358b55dce4cf8db

src/include/efl/mobile/c/ui_application.h
src/include/efl/mobile/c/ui_menu.h
src/include/efl/mobile/c/ui_standard_view.h
src/include/efl/mobile/c/ui_view.h
src/include/efl/mobile/c/ui_viewmgr.h
src/lib/efl/mobile/c/ui_view.cpp

index 7e4cbbcdef0f9e703f3b75724c221742f894b305..35b7568b29531441c964408db6f41afbf0951788 100644 (file)
@@ -88,7 +88,6 @@ EAPI int ui_application_init();
  * @return @c 0 on success, otherwise a negative error value
  * @retval #UI_VIEWMGR_ERROR_NONE Successful
  * @retval #UI_VIEWMGR_ERROR_INVALID_PARAMETER Invalid parameters
- * @retval #UI_VIEWMGR_ERROR_APPLICATION The application is illegally launched, not launched by the launch system.
  * @retval #UI_VIEWMGR_ERROR_ALREADY_IN_PROGRESS The main loop already starts
  * @retval #UI_VIEWMGR_ERROR_NOT_PERMITTED If Initialization was not performed yet
  *
index 21234ed4b345ee011d60ba5b8e8a04883bcd4533..c00387879c204981a1c0d7767ccd7ed80595f857 100644 (file)
@@ -17,7 +17,7 @@ extern "C" {
  * @since_tizen 3.0
  *
  * @param[in] menu An ui_menu object
- * @param[in] ctxpopup ctxpopup object. It allows @c NULL for canceling the previous content
+ * @param[in] content ctxpopup object. It allows @c NULL for canceling the previous content
  *
  * @return @c 0 on success, otherwise a negative error value
  * @retval #UI_VIEWMGR_ERROR_NONE Successful
index b4a8f63ea153fe9e16f2b60c6e4e7c9e109bcf0f..5af5fe80b595f09f5816c6793c0189264663379c 100644 (file)
@@ -68,7 +68,7 @@ EAPI int ui_standard_view_set_sub_title(ui_standard_view *view, const char *text
  * @since_tizen 3.0
  *
  * @param[in] view An ui_standard_view instance
- * @param[in] text The label in the title badge area
+ * @param[in] badge_text The label in the title badge area
  *
  * @return @c 0 on success, otherwise a negative error value
  * @retval #UI_VIEWMGR_ERROR_NONE Successful
index 20c8a6a81dc3f494370349579f887056b3d62291..077c0377a85a3954fa3ee8027974eaf763babf59 100644 (file)
@@ -208,6 +208,7 @@ EAPI ui_view_indicator ui_view_get_indicator(const ui_view *view);
  * @remarks Set an array of rotation values.
  *          For instance, {0, 90, 180, 270}. These rotation values depends on the system support.
  *
+ * @param[in] view An ui_view instance
  * @param[in] rotations The array of rotation values
  * @param[in] count The number of arrays of rotations
  *
@@ -255,7 +256,7 @@ EAPI const int *ui_view_get_available_rotations(const ui_view *view, unsigned in
  *
  * @see ui_view_get_removable_content()
  */
-EAPI int ui_view_set_removable_content(ui_view *view, bool remove);
+EAPI int ui_view_set_removable_content(ui_view *view, bool removable);
 
 /**
  * @brief Returns a state of removable content.
@@ -355,7 +356,7 @@ EAPI const char *ui_view_get_transition_style(const ui_view *view);
  * @exception #UI_VIEWMGR_ERROR_NONE Successfully added
  * @exception #UI_VIEWMGR_ERROR_INVALID_PARAMETER @a view is invalid
  *
- * @get_last_result()
+ * @see get_last_result()
  */
 EAPI ui_menu *ui_view_get_menu(const ui_view *view);
 
@@ -371,7 +372,7 @@ EAPI ui_menu *ui_view_get_menu(const ui_view *view);
  * @exception #UI_VIEWMGR_ERROR_NONE Successfully added
  * @exception #UI_VIEWMGR_ERROR_INVALID_PARAMETER @a view is invalid
  *
- * @get_last_result()
+ * @see get_last_result()
  */
 EAPI const char *ui_view_get_name(const ui_view *view);
 
index 70ec53247ca6030d4077924556d50e1360f182e1..5eac1f753254828d7bcb0d202358d883bfcf2362 100644 (file)
@@ -35,7 +35,7 @@ extern "C" {
 EAPI int ui_viewmgr_push_view(ui_view *view);
 
 /**
- * @brief Inserts a view in the ui_viewmgr view list. Specifically, insert a given @a view right before of the given view, @before.
+ * @brief Inserts a view in the ui_viewmgr view list. Specifically, insert a given @a view right before of the given view, @before.
  * @since_tizen 3.0
  *
  * @param[in] view An ui_view to insert in the ui_viewmgr view list
@@ -51,7 +51,7 @@ EAPI int ui_viewmgr_push_view(ui_view *view);
 EAPI int ui_viewmgr_insert_view_before(ui_view *view, ui_view *before);
 
 /**
- * @brief Inserts a view in the ui_viewmgr view list. Specifically, insert a given @a view right after of the given view, @after.
+ * @brief Inserts a view in the ui_viewmgr view list. Specifically, insert a given @a view right after of the given view, @a after.
  * @since_tizen 3.0
  *
  * @param[in] view An ui_view to insert in the ui_viewmgr view list
index b9c420995edafadde5005680cd8958bdec9d4780..2f3730b8c107f3f1dbbb17cde8468be4d624f315 100644 (file)
@@ -282,12 +282,12 @@ EAPI ui_view_indicator ui_view_get_indicator(const ui_view *view)
        return view->getIndicator();
 }
 
-EAPI int ui_view_set_removable_content(ui_view *view, bool remove)
+EAPI int ui_view_set_removable_content(ui_view *view, bool removable)
 {
        int ret = validate_view(view);
        if (ret != UI_VIEWMGR_ERROR_NONE) return ret;
 
-       view->setRemovableContent(remove);
+       view->setRemovableContent(removable);
 
        return UI_VIEWMGR_ERROR_NONE;
 }