summaryrefslogtreecommitdiff
path: root/render/box.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-02-18 00:24:41 +0000
committerJames Bursa <james@netsurf-browser.org>2004-02-18 00:24:41 +0000
commit13925ef8d507d9206856a49975ab3eb26dbba9b8 (patch)
tree3a54b29a0415d1a59ac190209d8f5d043540e3ce /render/box.h
parent36bb869ae4d65ec7c61dedc6c3577ebc24ef3808 (diff)
downloadnetsurf-13925ef8d507d9206856a49975ab3eb26dbba9b8.tar.gz
netsurf-13925ef8d507d9206856a49975ab3eb26dbba9b8.tar.bz2
[project @ 2004-02-18 00:24:41 by bursa]
Correct documentation of struct box. svn path=/import/netsurf/; revision=560
Diffstat (limited to 'render/box.h')
-rw-r--r--render/box.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/render/box.h b/render/box.h
index ac265b33d..c70dcb864 100644
--- a/render/box.h
+++ b/render/box.h
@@ -191,14 +191,14 @@ struct box {
struct font_data *font; /**< Font, or 0 if no text. */
- /**< Form control data, or 0 if not a form control. */
+ /** Form control data, or 0 if not a form control. */
struct form_control* gadget;
- /**< Object in this box (usually an image), or 0 if none. */
+ /** Object in this box (usually an image), or 0 if none. */
struct content* object;
- /**< Parameters for the object, or 0. */
+ /** Parameters for the object, or 0. */
struct object_params *object_params;
- /**< State of object, or 0. */
+ /** State of object, or 0. */
void *object_state;
};