From: Woochan Lee Date: Fri, 14 Oct 2016 08:03:07 +0000 (+0900) Subject: Delete "." in description. X-Git-Tag: submit/tizen_3.0/20161104.045713^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=84842c55dc6e09d7f4c91b656ee4306a659b72c0;p=platform%2Fcore%2Fuifw%2Fui-viewmgr.git Delete "." in description. Change-Id: Ic40e042c64f33642dfb16d967f98dc3401685890 --- diff --git a/src/include/efl/mobile/c/ui_application.h b/src/include/efl/mobile/c/ui_application.h index 3742c07..b82d3e5 100644 --- a/src/include/efl/mobile/c/ui_application.h +++ b/src/include/efl/mobile/c/ui_application.h @@ -13,7 +13,7 @@ extern "C" { */ /** - * @brief The ui_application event callback function signature. + * @brief Called when the each application event occured. * @since_tizen 3.0 * * @param[in] user_data The user data to be passed to the given @a event_callback functions @@ -64,10 +64,10 @@ typedef struct * @param[in] pkg The name of package * @param[in] locale_dir The path of locale directory * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS Initialization was already done. - * @retval #TIZEN_ERROR_OUT_OF_MEMORY Fails to allocate memory. + * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS Initialization was already done + * @retval #TIZEN_ERROR_OUT_OF_MEMORY Fails to allocate memory * * @see ui_application_term() * @see ui_application_run() @@ -85,12 +85,12 @@ EAPI int ui_application_init(const char *pkg, const char *locale_dir); * @param[in] count The number of event count * @param[in] user_data User data for event callbacks * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful * @retval #TIZEN_ERROR_INVALID_PARAMETER Invalid parameters - * @retval #TIZEN_ERROR_APPLICATION The application is illegally launched, not launched by the launch system. - * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS The main loop already starts. - * @retval #TIZEN_ERROR_NOT_PERMITTED If Initialization was not performed yet. + * @retval #TIZEN_ERROR_APPLICATION The application is illegally launched, not launched by the launch system + * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS The main loop already starts + * @retval #TIZEN_ERROR_NOT_PERMITTED If Initialization was not performed yet * * @pre Call ui_application_init() before calling this function. * @@ -105,7 +105,7 @@ EAPI int ui_application_run(int argc, char **argv, ui_application_event_s *event * @brief Deinitializes ui_application. * @since_tizen 3.0 * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful * * @pre Call ui_application_init() before calling this function. diff --git a/src/include/efl/mobile/c/ui_menu.h b/src/include/efl/mobile/c/ui_menu.h index fbd13d1..92cde8f 100644 --- a/src/include/efl/mobile/c/ui_menu.h +++ b/src/include/efl/mobile/c/ui_menu.h @@ -19,9 +19,9 @@ extern "C" { * @param[in] menu An ui_menu object * @param[in] ctxpopup ctxpopup object. It allows @c NULL for canceling the previous content * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER @a menu is invalid or @a content is not a type of Elm_Ctxpopup. + * @retval #TIZEN_ERROR_INVALID_PARAMETER @a menu is invalid or @a content is not a type of Elm_Ctxpopup * * @see ui_menu_get_content() * @see ui_menu_unset_content() @@ -61,10 +61,10 @@ EAPI Elm_Ctxpopup *ui_menu_unset_content(ui_menu *menu); * * @param[in] menu An ui_menu instance * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_NOT_PERMITTED menu instance is not set up yet. - * @retval #TIZEN_ERROR_INVALID_PARAMETER @a menu is invalid. + * @retval #TIZEN_ERROR_NOT_PERMITTED menu instance is not set up yet + * @retval #TIZEN_ERROR_INVALID_PARAMETER @a menu is invalid * * @see ui_menu_deactivate() */ @@ -77,10 +77,10 @@ EAPI int ui_menu_activate(ui_menu *menu); * * @param[in] menu An ui_menu instance * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_NOT_PERMITTED menu instance is not set up yet. - * @retval #TIZEN_ERROR_INVALID_PARAMETER @a menu is invalid. + * @retval #TIZEN_ERROR_NOT_PERMITTED menu instance is not set up yet + * @retval #TIZEN_ERROR_INVALID_PARAMETER @a menu is invalid * * @see ui_menu_activate() */ diff --git a/src/include/efl/mobile/c/ui_popup.h b/src/include/efl/mobile/c/ui_popup.h index 5c8f24d..a07c514 100644 --- a/src/include/efl/mobile/c/ui_popup.h +++ b/src/include/efl/mobile/c/ui_popup.h @@ -33,9 +33,9 @@ EAPI ui_popup *ui_popup_create(ui_view *view); * * @param[in] popup An ui_popup instance * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER @a popup is invalid. + * @retval #TIZEN_ERROR_INVALID_PARAMETER @a popup is invalid * * @see ui_popup_create() */ @@ -48,9 +48,9 @@ EAPI int ui_popup_destroy(ui_popup *popup); * @param[in] popup An ui_popup instance * @param[in] content popup object. It allows @c NULL for canceling the previous content * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER @a popup is invalid or @a content is not a type of Elm_Popup. + * @retval #TIZEN_ERROR_INVALID_PARAMETER @a popup is invalid or @a content is not a type of Elm_Popup * * @see ui_popup_get_content() * @see ui_popup_unset_content() @@ -90,10 +90,10 @@ EAPI Elm_Popup *ui_popup_unset_content(ui_popup *popup); * * @param[in] popup An ui_popup instance * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_NOT_PERMITTED popup instance is not set up yet. - * @retval #TIZEN_ERROR_INVALID_PARAMETER @a popup is invalid. + * @retval #TIZEN_ERROR_NOT_PERMITTED popup instance is not set up yet + * @retval #TIZEN_ERROR_INVALID_PARAMETER @a popup is invalid * * @see ui_popup_deactivate() * @see ui_popup_get_activated() @@ -107,10 +107,10 @@ EAPI int ui_popup_activate(ui_popup *popup); * * @param[in] popup An ui_popup instance * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_NOT_PERMITTED popup instance is not set up yet. - * @retval #TIZEN_ERROR_INVALID_PARAMETER @a popup is invalid. + * @retval #TIZEN_ERROR_NOT_PERMITTED popup instance is not set up yet + * @retval #TIZEN_ERROR_INVALID_PARAMETER @a popup is invalid * * @see ui_popup_activate() * @see ui_popup_get_activated() diff --git a/src/include/efl/mobile/c/ui_standard_view.h b/src/include/efl/mobile/c/ui_standard_view.h index 5651675..aa931bb 100644 --- a/src/include/efl/mobile/c/ui_standard_view.h +++ b/src/include/efl/mobile/c/ui_standard_view.h @@ -32,10 +32,10 @@ EAPI ui_standard_view *ui_standard_view_create(const char *name); * @param[in] view An ui_standard_view instance * @param[in] text The label in the title area * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid. - * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken. + * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid + * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken * * @see ui_standard_view_get_title() */ @@ -48,10 +48,10 @@ EAPI int ui_standard_view_set_title(ui_standard_view *view, const char *text); * @param[in] view An ui_standard_view instance * @param[in] text The label in the subtitle area * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid. - * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken. + * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid + * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken * * @see ui_standard_view_get_sub_title() */ @@ -64,10 +64,10 @@ EAPI int ui_standard_view_set_sub_title(ui_standard_view *view, const char *text * @param[in] view An ui_standard_view instance * @param[in] text The label in the title badge area * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid. - * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken. + * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid + * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken * * @see ui_standard_view_get_title_badge() */ @@ -80,11 +80,11 @@ EAPI int ui_standard_view_set_title_badge(ui_standard_view *view, const char *ba * @param[in] view An ui_standard_view instance * @param[in] title_right_btn The button in the right part of title area * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid. - * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS if @a title_right_btn is same with the existing one. - * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken. + * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid + * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS if @a title_right_btn is same with the existing one + * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken * * @see ui_standard_view_get_title_right_btn() * @see ui_standard_view_unset_title_right_btn() @@ -124,11 +124,11 @@ EAPI Elm_Button *ui_standard_view_unset_title_right_btn(ui_standard_view *view); * @param[in] view An ui_standard_view instance * @param[in] title_left_btn The button in the left part of title area * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid. - * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS if @a title_left_btn is same with the existing one. - * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken. + * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid + * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS if @a title_left_btn is same with the existing one + * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken * * @see ui_standard_view_get_title_left_btn() * @see ui_standard_view_unset_title_left_btn() @@ -168,11 +168,11 @@ EAPI Elm_Button *ui_standard_view_unset_title_left_btn(ui_standard_view *view); * @param[in] view An ui_standard_view instance * @param[in] toolbar Toolbar object * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid. - * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS if @a toolbar is already existing. - * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken. + * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid + * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS if @a toolbar is already existing + * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken * * @see ui_standard_view_get_toolbar() * @see ui_standard_view_unset_toolbar() @@ -213,10 +213,10 @@ EAPI Elm_Toolbar *ui_standard_view_unset_toolbar(ui_standard_view *view); * @param[in] visible title state set as visible if the given param is @c true, otherwise title area set as invisible * @param[in] anim title area will be shown with animation if the given param is @c true, otherwise title area will be shown without animation * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid. - * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken. + * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid + * @retval #TIZEN_ERROR_RESULT_OUT_OF_RANGE Instance is corrupted. Maybe base object is broken */ EAPI int ui_standard_view_set_title_visible(ui_standard_view *view, bool visible, bool anim); diff --git a/src/include/efl/mobile/c/ui_view.h b/src/include/efl/mobile/c/ui_view.h index dbdd774..429223c 100644 --- a/src/include/efl/mobile/c/ui_view.h +++ b/src/include/efl/mobile/c/ui_view.h @@ -13,7 +13,7 @@ extern "C" { */ /** - * @brief The ui_view event callback function signature. + * @brief Called when the each view event occured. * @since_tizen 3.0 * * @param[in] view An ui_view instance @@ -69,7 +69,7 @@ typedef enum * * @param[in] name view name * - * @return The ui_view instance. + * @return The ui_view instance * * @see ui_view_destroy() */ @@ -82,9 +82,9 @@ EAPI ui_view *ui_view_create(const char *name); * @param[in] view An ui_view instance * @param[in] content A new content. It allows @c NULL for canceling the previous content * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid. + * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid * * @see ui_view_get_content() * @see ui_view_unset_content() @@ -126,9 +126,9 @@ EAPI Eo *ui_view_unset_content(ui_view *view); * @param[in] event_cb The set of callback functions to handle view events * @param[in] user_data The user data to be passed to the given @a event_callback functions * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid. + * @retval #TIZEN_ERROR_INVALID_PARAMETER if @a view is invalid * * @see ui_view_event_type_e */ @@ -152,10 +152,10 @@ EAPI Eo* ui_view_get_base(ui_view *view); * @param[in] view An ui_view instance * @param[in] indicator The mode to set, one of #ui_view_indicator * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER Invalid Parameters. - * @retval #TIZEN_ERROR_NOT_PERMITTED Current view manager system is not set up. + * @retval #TIZEN_ERROR_INVALID_PARAMETER Invalid Parameters + * @retval #TIZEN_ERROR_NOT_PERMITTED Current view manager system is not set up * * @see ui_view_indicator * @see ui_view_get_indicator() @@ -183,11 +183,11 @@ EAPI ui_view_indicator ui_view_get_indicator(ui_view *view); * @param[in] rotations The array of rotation values * @param[in] count The number of arrays of rotations * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER If @a view is invalid or @a count is less than 1 or @a rotations is invalid pointer. + * @retval #TIZEN_ERROR_INVALID_PARAMETER If @a view is invalid or @a count is less than 1 or @a rotations is invalid pointer * @retval #TIZEN_ERROR_OUT_OF_MEMORY Out of Memory - * @retval #TIZEN_ERROR_NOT_PERMITTED Current view manager system is not set up. + * @retval #TIZEN_ERROR_NOT_PERMITTED Current view manager system is not set up * * @see ui_view_get_available_rotations() */ @@ -202,7 +202,7 @@ EAPI int ui_view_set_available_rotations(ui_view *view, const int *rotations, un * * @return The array of rotation values * - * @warning @c NULL will be returned if @a view or @a count is invalid. + * @warning @c NULL will be returned if @a view or @a count is invalid * * @see ui_view_set_available_rotations() */ @@ -217,9 +217,9 @@ EAPI const int *ui_view_get_available_rotations(ui_view *view, unsigned int *cou * * @warning You should not remove a view content manually on unload status if removable content is set * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER If @a view is invalid or @a count is less than 1 or @a rotations is invalid pointer. + * @retval #TIZEN_ERROR_INVALID_PARAMETER If @a view is invalid or @a count is less than 1 or @a rotations is invalid pointer * * @see ui_view_get_removable_content() */ @@ -270,9 +270,9 @@ EAPI ui_view_orientation_mode ui_view_get_orientation_mode(ui_view *view); * @param[in] view An ui_view instance * @param[in] style a transition style name * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER @a view is invalid or @a style is not supported. + * @retval #TIZEN_ERROR_INVALID_PARAMETER @a view is invalid or @a style is not supported * * @see ui_view_get_transition_style() */ @@ -328,9 +328,9 @@ EAPI ui_view_state ui_view_get_state(ui_view *view); * * @param[in] view An ui_view instance * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_INVALID_PARAMETER @a view is invalid. + * @retval #TIZEN_ERROR_INVALID_PARAMETER @a view is invalid * * @see ui_view_create() * @see ui_standard_view_create() diff --git a/src/include/efl/mobile/c/ui_viewmgr.h b/src/include/efl/mobile/c/ui_viewmgr.h index 22c6d5b..9c5b7b2 100644 --- a/src/include/efl/mobile/c/ui_viewmgr.h +++ b/src/include/efl/mobile/c/ui_viewmgr.h @@ -22,9 +22,9 @@ extern "C" { * * @param[in] view An ui_view to insert in the ui_viewmgr view list * - * @return @c 0 on success, otherwise a negative error value. - * @retval #TIZEN_ERROR_INVALID_PARAMETER @a view is not valid. - * @retval #TIZEN_ERROR_NOT_PERMITTED @a view was already inserted. + * @return @c 0 on success, otherwise a negative error value + * @retval #TIZEN_ERROR_INVALID_PARAMETER @a view is not valid + * @retval #TIZEN_ERROR_NOT_PERMITTED @a view was already inserted * * @see ui_viewmgr_activate() * @see ui_viewmgr_insert_view_before() @@ -40,10 +40,10 @@ EAPI int ui_viewmgr_push_view(ui_view *view); * @param[in] view An ui_view to insert in the ui_viewmgr view list * @param[in] before An ui_view that will be just inserted after @a view. If you pass @c NULL, @a view will be inserted at the front of the view list * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_NOT_PERMITTED @a view was already inserted. - * @retval #TIZEN_ERROR_INVALID_PARAMETER @a view is not valid. + * @retval #TIZEN_ERROR_NOT_PERMITTED @a view was already inserted + * @retval #TIZEN_ERROR_INVALID_PARAMETER @a view is not valid * * @see ui_viewmgr_insert_view_after() */ @@ -56,10 +56,10 @@ EAPI int ui_viewmgr_insert_view_before(ui_view *view, ui_view *before); * @param[in] view An ui_view to insert in the ui_viewmgr view list * @param[in] after An ui_view that will be just inserted before the @a view. If you pass @c NULL, @a view will be inserted at the end of the view list * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_NOT_PERMITTED @a view was already inserted. - * @retval #TIZEN_ERROR_INVALID_PARAMETER @a view is not valid. + * @retval #TIZEN_ERROR_NOT_PERMITTED @a view was already inserted + * @retval #TIZEN_ERROR_INVALID_PARAMETER @a view is not valid * * @see ui_viewmgr_insert_view_before() */ @@ -73,10 +73,10 @@ EAPI int ui_viewmgr_insert_view_after(ui_view *view, ui_view *after); * @remarks If the view is just one left, then ui_viewmgr would be deactivated automatically since the ui application might be invalid anymore. Otherwise, * the application will be terminated. It's up to system configuration. * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful - * @retval #TIZEN_ERROR_NOT_PERMITTED No more views to pop. - * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS On a certain profile, it may not allow to pop multiple views at the same time. + * @retval #TIZEN_ERROR_NOT_PERMITTED No more views to pop + * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS On a certain profile, it may not allow to pop multiple views at the same time * * @see ui_viewmgr_deactivate() * @see ui_viewmgr_push_view() @@ -89,10 +89,10 @@ EAPI int ui_viewmgr_pop_view(void); * @remarks ui_viewmgr window and views will be shown once this function is called. Usually this should be called after applications set their all views * on initialization time. * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS Already activated - * @retval #TIZEN_ERROR_NOT_PERMITTED Can't be activated. (ie, view manager has zero views.) + * @retval #TIZEN_ERROR_NOT_PERMITTED Can't be activated (ie, view manager has zero views.) * * @see ui_viewmgr_deactivate() */ @@ -104,7 +104,7 @@ EAPI int ui_viewmgr_activate(void); * @remarks ui_viewmgr window and views will be hidden once this function is called. this behavior is up ui system, but usually it hides(unmap) * current window in order that application go background. * - * @return @c 0 on success, otherwise a negative error value. + * @return @c 0 on success, otherwise a negative error value * @retval #TIZEN_ERROR_NONE Successful * @retval #TIZEN_ERROR_ALREADY_IN_PROGRESS Already deactivated * @@ -174,7 +174,7 @@ EAPI Eo *ui_viewmgr_get_base(void); * @since_tizen 3.0 * @remarks The index number of views are variable since the view list is variable * - * @param[in] view An ui_view to query the index. + * @param[in] view An ui_view to query the index * * @return An index of the given @a view on success, otherwise, -1 */