summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-02-08 15:15:27 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2013-02-08 15:15:27 +0000
commitf57e89cc25e92c2ad4eb419e745955595248088b (patch)
tree1c122b57baec6d4b0a163f6aa27313d10c6c3967 /desktop
parent98befbb770dabfe0d73bd238529061f4907517b8 (diff)
downloadnetsurf-f57e89cc25e92c2ad4eb419e745955595248088b.tar.gz
netsurf-f57e89cc25e92c2ad4eb419e745955595248088b.tar.bz2
Add ta to documentation.
Diffstat (limited to 'desktop')
-rw-r--r--desktop/textarea.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop/textarea.h b/desktop/textarea.h
index 54232712e..266b8356a 100644
--- a/desktop/textarea.h
+++ b/desktop/textarea.h
@@ -189,6 +189,7 @@ bool textarea_mouse_action(struct textarea *ta, browser_mouse_state mouse,
/**
* Gets the dimensions of a textarea
*
+ * \param ta textarea widget
* \param width if not NULL, gets updated to the width of the textarea
* \param height if not NULL, gets updated to the height of the textarea
*/
@@ -198,6 +199,7 @@ void textarea_get_dimensions(struct textarea *ta, int *width, int *height);
* Set the dimensions of a textarea, causing a reflow and
* Does not emit a redraw request. Up to client to call textarea_redraw.
*
+ * \param ta textarea widget
* \param width the new width of the textarea
* \param height the new height of the textarea
*/
@@ -207,6 +209,7 @@ void textarea_set_dimensions(struct textarea *ta, int width, int height);
* Set the dimensions and padding of a textarea, causing a reflow.
* Does not emit a redraw request. Up to client to call textarea_redraw.
*
+ * \param ta textarea widget
* \param width the new width of the textarea
* \param height the new height of the textarea
* \param top the new top padding of the textarea