summaryrefslogtreecommitdiff
path: root/render/box.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-04-26 13:45:52 +0000
committerJames Bursa <james@netsurf-browser.org>2004-04-26 13:45:52 +0000
commit330a3bb64c58ff12d8ac7d08de74f3064c670a75 (patch)
tree197e67f90e9a1044b2dfc96690872c57de2b14a4 /render/box.h
parentd44ab700d065a5ac859df24969a4d993cee122ec (diff)
downloadnetsurf-330a3bb64c58ff12d8ac7d08de74f3064c670a75.tar.gz
netsurf-330a3bb64c58ff12d8ac7d08de74f3064c670a75.tar.bz2
[project @ 2004-04-26 13:45:52 by bursa]
Fix box_coords(). svn path=/import/netsurf/; revision=804
Diffstat (limited to 'render/box.h')
-rw-r--r--render/box.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/box.h b/render/box.h
index d807e430c..0b1831c6f 100644
--- a/render/box.h
+++ b/render/box.h
@@ -212,6 +212,6 @@ struct box * box_create(struct css_style * style,
void box_add_child(struct box * parent, struct box * child);
void box_insert_sibling(struct box *box, struct box *new_box);
void box_free(struct box *box);
-void box_coords(struct box *box, unsigned long *x, unsigned long *y);
+void box_coords(struct box *box, int *x, int *y);
#endif