From 5a11f1a7865e7d0c9e704187947ef466ddf0815a Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Wed, 5 Jun 2019 14:08:33 +0900 Subject: [PATCH] Fix documentation about autofill save view Change-Id: I6a72eebf4602b3d33931a4ba76993c085abc74d6 Signed-off-by: Jihoon Kim --- include/autofill_common.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/include/autofill_common.h b/include/autofill_common.h index 5a6ad96..1ce7fca 100644 --- a/include/autofill_common.h +++ b/include/autofill_common.h @@ -595,7 +595,7 @@ int autofill_view_info_foreach_item(autofill_view_info_h vi, autofill_item_cb ca * @brief Creates autofill save view information. * @since_tizen 5.5 * @remarks If the function succeeds, @a vi handle must be released with autofill_save_view_info_destroy() - * @param[out] vi The autofill view info handle + * @param[out] vi The handle of autofill for the saving view * @return 0 on success, otherwise a negative error value * @retval #AUTOFILL_ERROR_NONE No error * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter @@ -616,7 +616,7 @@ int autofill_save_view_info_destroy(autofill_save_view_info_h vi); /** * @brief Sets the app ID in autofill save view information. * @since_tizen 5.5 - * @param[in] vi The autofill view info handle + * @param[in] vi The handle of autofill for the saving view * @param[in] app_id The app ID * @return 0 on success, otherwise a negative error value * @retval #AUTOFILL_ERROR_NONE No error @@ -628,7 +628,7 @@ int autofill_save_view_info_set_app_id(autofill_save_view_info_h vi, const char * @brief Gets the app ID from autofill save view information. * @since_tizen 5.5 * @remarks @a app_id must be released using free(). - * @param[in] vi The autofill view info handle + * @param[in] vi The handle of autofill for the saving view * @param[out] app_id The app ID * @return 0 on success, otherwise a negative error value * @retval #AUTOFILL_ERROR_NONE No error @@ -640,7 +640,7 @@ int autofill_save_view_info_get_app_id(autofill_save_view_info_h vi, char **app_ /** * @brief Sets the view ID in autofill save view information. * @since_tizen 5.5 - * @param[in] vi The autofill view info handle + * @param[in] vi The handle of autofill for the saving view * @param[in] view_id The view ID * @return 0 on success, otherwise a negative error value * @retval #AUTOFILL_ERROR_NONE No error @@ -652,7 +652,7 @@ int autofill_save_view_info_set_view_id(autofill_save_view_info_h vi, const char * @brief Gets the view ID from autofill save view information. * @since_tizen 5.5 * @remarks @a view_id must be released using free(). - * @param[in] vi The autofill view info handle + * @param[in] vi The handle of autofill for the saving view * @param[out] view_id The view ID * @return 0 on success, otherwise a negative error value * @retval #AUTOFILL_ERROR_NONE No error @@ -662,9 +662,9 @@ int autofill_save_view_info_set_view_id(autofill_save_view_info_h vi, const char int autofill_save_view_info_get_view_id(autofill_save_view_info_h vi, char **view_id); /** - * @brief Sets the view title in autofill save view information. + * @brief Sets the title of the view having autofill entries. * @since_tizen 5.5 - * @param[in] vi The autofill view info handle + * @param[in] vi The handle of autofill for the saving view * @param[in] view_title The view title * @return 0 on success, otherwise a negative error value * @retval #AUTOFILL_ERROR_NONE No error @@ -673,10 +673,10 @@ int autofill_save_view_info_get_view_id(autofill_save_view_info_h vi, char **vie int autofill_save_view_info_set_view_title(autofill_save_view_info_h vi, const char *view_title); /** - * @brief Gets the view title from autofill save view information. + * @brief Gets the title of the view having autofill entries. * @since_tizen 5.5 * @remarks @a view_title must be released using free(). - * @param[in] vi The autofill view info handle + * @param[in] vi The handle of autofill for the saving view * @param[out] view_title The view title * @return 0 on success, otherwise a negative error value * @retval #AUTOFILL_ERROR_NONE No error @@ -688,7 +688,7 @@ int autofill_save_view_info_get_view_title(autofill_save_view_info_h vi, char ** /** * @brief Adds autofill save item in autofill save view information. * @since_tizen 5.5 - * @param[in] vi The autofill save view info handle + * @param[in] vi The handle of autofill for the saving view * @param[in] it The autofill save item handle * @return 0 on success, otherwise a negative error value * @retval #AUTOFILL_ERROR_NONE No error @@ -699,7 +699,7 @@ int autofill_save_view_info_add_item(autofill_save_view_info_h vi, autofill_save /** * @brief Retrieves all items in autofill save view information. * @since_tizen 5.5 - * @param[in] vi The autofill view info handle + * @param[in] vi The handle of autofill for the saving view * @param[in] callback The callback function to register * @param[in] user_data The user data to be passed to the callback function * @return 0 on success, otherwise a negative error value -- 2.7.4