summaryrefslogtreecommitdiff
path: root/desktop/textarea.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-11-09 21:49:33 +0000
committerVincent Sanders <vince@kyllikki.org>2014-11-09 21:49:33 +0000
commit7c4c73f1b00bc8ca64fd181662fd9e05b3d4abf5 (patch)
tree34240b73e61a57917b4ac553c7cd1da34b411124 /desktop/textarea.h
parent9f0b252371e8a5070cc8a4ffd5ef3a890a90fe52 (diff)
downloadnetsurf-7c4c73f1b00bc8ca64fd181662fd9e05b3d4abf5.tar.gz
netsurf-7c4c73f1b00bc8ca64fd181662fd9e05b3d4abf5.tar.bz2
Desktop doxygen fixes
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,