From: Jihoon Kim Date: Wed, 17 Jul 2019 06:02:25 +0000 (+0900) Subject: Remove unused return value in autofill manager doxygen X-Git-Tag: accepted/tizen/unified/20190722.074801~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de548a9ad5ed440cbb3e6e425fc38f7822d8c825;p=platform%2Fcore%2Fuifw%2Fautofill.git Remove unused return value in autofill manager doxygen Change-Id: I34d6d30b83016d3a76a48a76959e52767e63284b Signed-off-by: Jihoon Kim --- diff --git a/include/autofill_manager.h b/include/autofill_manager.h index 2850cc2..57a41d7 100644 --- a/include/autofill_manager.h +++ b/include/autofill_manager.h @@ -102,7 +102,6 @@ int autofill_manager_create(autofill_manager_h *amh); * @retval #AUTOFILL_ERROR_NONE No error * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter * @retval #AUTOFILL_ERROR_PERMISSION_DENIED The application does not have the privilege to call this function - * @retval #AUTOFILL_ERROR_NOT_INITIALIZED Not initialized * @see autofill_manager_create() */ int autofill_manager_destroy(autofill_manager_h amh); @@ -120,7 +119,6 @@ int autofill_manager_destroy(autofill_manager_h amh); * @retval #AUTOFILL_ERROR_NONE No error * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter * @retval #AUTOFILL_ERROR_PERMISSION_DENIED The application does not have the privilege to call this function - * @retval #AUTOFILL_ERROR_NOT_INITIALIZED Not initialized * @retval #AUTOFILL_ERROR_OPERATION_FAILED Operation failure */ int autofill_manager_connect(autofill_manager_h amh, autofill_manager_connection_status_changed_cb callback, void *user_data); @@ -137,7 +135,6 @@ int autofill_manager_connect(autofill_manager_h amh, autofill_manager_connection * @retval #AUTOFILL_ERROR_NONE No error * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter * @retval #AUTOFILL_ERROR_PERMISSION_DENIED The application does not have the privilege to call this function - * @retval #AUTOFILL_ERROR_NOT_INITIALIZED Not initialized * @see autofill_manager_get_autofill_service() */ int autofill_manager_set_autofill_service(autofill_manager_h amh, const char *app_id); @@ -155,7 +152,6 @@ int autofill_manager_set_autofill_service(autofill_manager_h amh, const char *ap * @retval #AUTOFILL_ERROR_NONE No error * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter * @retval #AUTOFILL_ERROR_PERMISSION_DENIED The application does not have the privilege to call this function - * @retval #AUTOFILL_ERROR_NOT_INITIALIZED Not initialized * @see autofill_manager_set_autofill_service() */ int autofill_manager_get_autofill_service(autofill_manager_h amh, char **service_app_id); @@ -173,7 +169,6 @@ int autofill_manager_get_autofill_service(autofill_manager_h amh, char **service * @retval #AUTOFILL_ERROR_NONE No error * @retval #AUTOFILL_ERROR_PERMISSION_DENIED The application does not have the privilege to call this function * @retval #AUTOFILL_ERROR_INVALID_PARAMETER Invalid parameter - * @retval #AUTOFILL_ERROR_NOT_INITIALIZED Not initialized * @retval #AUTOFILL_ERROR_OPERATION_FAILED Operation failure */ int autofill_manager_foreach_autofill_service(autofill_manager_h amh, autofill_manager_autofill_service_cb callback, void* user_data);