* @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
*
* @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
* @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
* @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
*
*
* @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.
* @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);
* @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);
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, @a before.
* @since_tizen 3.0
*
* @param[in] view An ui_view to insert in the ui_viewmgr view list
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
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;
}