summaryrefslogtreecommitdiff
path: root/desktop/textarea.h
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/textarea.h')
-rw-r--r--desktop/textarea.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/desktop/textarea.h b/desktop/textarea.h
index 5f9e58175..66d5cbc5e 100644
--- a/desktop/textarea.h
+++ b/desktop/textarea.h
@@ -111,10 +111,11 @@ typedef struct textarea_setup {
typedef void(*textarea_client_callback)(void *data, struct textarea_msg *msg);
/**
- * Create a text area
+ * Create a text area.
*
+ * \param flags flags controlling the text area creation
* \param setup textarea settings and style
- * \param redraw_callback will be called when textarea wants to redraw
+ * \param callback will be called when textarea wants to redraw
* \param data user specified data which will be passed to callbacks
* \return Opaque handle for textarea or 0 on error
*/
@@ -143,6 +144,7 @@ bool textarea_set_text(struct textarea *ta, const char *text);
*
* \param ta Text area
* \param text UTF-8 text to set text area's contents to
+ * \param text_length length of text.
* \return true on success, false on memory exhaustion or if ta lacks caret
*/
bool textarea_drop_text(struct textarea *ta, const char *text,