From 171f7548d6bc6832c9b4134186d4462b959c5628 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Thu, 18 Mar 2021 18:15:38 +0100 Subject: [PATCH] fix(textarea): remove the prototype of unimplementes functions --- src/widgets/lv_textarea.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/widgets/lv_textarea.h b/src/widgets/lv_textarea.h index 39f56c1c1..d07d4d74d 100644 --- a/src/widgets/lv_textarea.h +++ b/src/widgets/lv_textarea.h @@ -141,13 +141,6 @@ void lv_textarea_set_placeholder_text(lv_obj_t * ta, const char * txt); */ void lv_textarea_set_cursor_pos(lv_obj_t * ta, int32_t pos); -/** - * Hide/Unhide the cursor. - * @param ta pointer to a text area object - * @param hide true: hide the cursor - */ -void lv_textarea_set_cursor_hidden(lv_obj_t * ta, bool hide); - /** * Enable/Disable the positioning of the cursor by clicking the text on the text area. * @param ta pointer to a text area object @@ -239,13 +232,6 @@ lv_obj_t * lv_textarea_get_label(const lv_obj_t * ta); */ uint32_t lv_textarea_get_cursor_pos(const lv_obj_t * ta); -/** - * Get whether the cursor is hidden or not - * @param ta pointer to a text area object - * @return true: the cursor is hidden - */ -bool lv_textarea_get_cursor_hidden(const lv_obj_t * ta); - /** * Get whether the cursor click positioning is enabled or not. * @param ta pointer to a text area object