From: Jihoon Kim Date: Tue, 16 Feb 2021 01:15:07 +0000 (+0900) Subject: Fix typo X-Git-Tag: accepted/tizen/unified/20210217.030925~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b164fc95ac827126930adb8299e482fd7bc214e2;p=platform%2Fcore%2Fuifw%2Fise-default.git Fix typo Change-Id: I218e7ee52fb09356fea8fbc197a40ba7b55e02c8 Signed-off-by: Jihoon Kim --- diff --git a/src/w-input-smartreply.cpp b/src/w-input-smartreply.cpp index ad13844..6f30c36 100644 --- a/src/w-input-smartreply.cpp +++ b/src/w-input-smartreply.cpp @@ -65,7 +65,7 @@ static void _input_smartreply_get_reply_callback(int handle, int error, if (g_input_smartreply_data->candidate_list) { int ret; - ret = smartreply_service_destory_list(g_input_smartreply_data->candidate_list); + ret = smartreply_service_destroy_list(g_input_smartreply_data->candidate_list); if (ret != SMARTREPLY_ERROR_NONE) LOGD("can not destroy list : %d", ret); } @@ -116,7 +116,7 @@ bool input_smartreply_init(char *caller_id, char *sender, char *message) free(g_input_smartreply_data->lang); if (g_input_smartreply_data->candidate_list) { - ret = smartreply_service_destory_list(g_input_smartreply_data->candidate_list); + ret = smartreply_service_destroy_list(g_input_smartreply_data->candidate_list); if (ret != SMARTREPLY_ERROR_NONE) LOGD("can not destroy list : %d", ret); } @@ -149,7 +149,7 @@ void input_smartreply_deinit(void) if (g_input_smartreply_data->candidate_list) { int ret; - ret = smartreply_service_destory_list(g_input_smartreply_data->candidate_list); + ret = smartreply_service_destroy_list(g_input_smartreply_data->candidate_list); if (ret != SMARTREPLY_ERROR_NONE) LOGD("can not destroy list : %d", ret); } @@ -196,7 +196,7 @@ bool input_smartreply_get_reply(void) } if (g_input_smartreply_data->candidate_list) { - ret = smartreply_service_destory_list(g_input_smartreply_data->candidate_list); + ret = smartreply_service_destroy_list(g_input_smartreply_data->candidate_list); if (ret != SMARTREPLY_ERROR_NONE) LOGD("can not destroy list : %d", ret); }