From 6932827bc3a5daaf1920ad9acb22edd18204fbd3 Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Thu, 3 Nov 2016 12:58:01 +0900 Subject: [PATCH] capi: fix docs. Change-Id: I860bf0c5085c816af1fd82ab1b6c42bca79b552b --- src/include/efl/mobile/c/ui_standard_view.h | 3 ++- src/include/efl/mobile/c/ui_view.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/include/efl/mobile/c/ui_standard_view.h b/src/include/efl/mobile/c/ui_standard_view.h index bd645f8..b4a8f63 100644 --- a/src/include/efl/mobile/c/ui_standard_view.h +++ b/src/include/efl/mobile/c/ui_standard_view.h @@ -15,7 +15,7 @@ extern "C" { /** * @brief Creates an ui_standard_view. * @since_tizen 3.0 - * @remarks if you don't set a view name, you could not look up the view with it's name. @see ui_viewmgr_get_view_by_name(). + * @remarks if you don't set a view name, you could not look up the view with it's name. * The specific error code can be obtained using the get_last_result() method. * Error codes are described in Exception section. * @@ -26,6 +26,7 @@ extern "C" { * @exception #UI_VIEWMGR_ERROR_OUT_OF_MEMORY Fail to create new instance * * @see ui_view_destroy() + * @see ui_viewmgr_get_view_by_name() * @see get_last_result() */ EAPI ui_standard_view *ui_standard_view_create(const char *name); diff --git a/src/include/efl/mobile/c/ui_view.h b/src/include/efl/mobile/c/ui_view.h index d2c323e..44e961a 100644 --- a/src/include/efl/mobile/c/ui_view.h +++ b/src/include/efl/mobile/c/ui_view.h @@ -65,7 +65,7 @@ typedef enum /** * @brief Creates an ui_view. * @since_tizen 3.0 - * @remarks if you don't set a view name, you could not look up the view with it's name. @see ui_viewmgr_get_view_by_name(). + * @remarks if you don't set a view name, you could not look up the view with it's name. * The specific error code can be obtained using the get_last_result() method. * Error codes are described in Exception section. * @@ -76,6 +76,7 @@ typedef enum * @exception #UI_VIEWMGR_ERROR_OUT_OF_MEMORY Fail to create new instance * * @see ui_view_destroy() + * @see ui_viewmgr_get_view_by_name() * @see get_last_result() */ EAPI ui_view *ui_view_create(const char *name); -- 2.7.4