summaryrefslogtreecommitdiff
path: root/render/box.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-02-11 19:35:16 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-02-11 19:35:16 +0000
commit27b6096dcd8a38fa0200cec6dfe25f05529efa7c (patch)
treecc0794da3dc84fe65ea6d2fdc61f3f9b17a17ed0 /render/box.h
parentc247d54fb54cf7037bde6ef0c8d736371704e5f9 (diff)
downloadnetsurf-27b6096dcd8a38fa0200cec6dfe25f05529efa7c.tar.gz
netsurf-27b6096dcd8a38fa0200cec6dfe25f05529efa7c.tar.bz2
Move stuct rect out of box.h and tree.c.
svn path=/trunk/netsurf/; revision=11647
Diffstat (limited to 'render/box.h')
-rw-r--r--render/box.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/render/box.h b/render/box.h
index 5889645b2..7cde3728f 100644
--- a/render/box.h
+++ b/render/box.h
@@ -92,6 +92,7 @@
#include <libxml/HTMLparser.h>
#include "desktop/browser.h"
+#include "desktop/shape.h"
#include "css/css.h"
struct box;
@@ -110,11 +111,6 @@ typedef enum {
BOX_INLINE_END, BOX_NONE
} box_type;
-struct rect {
- int x0, y0;
- int x1, y1;
-};
-
/* Sides of a box */
enum box_side { TOP, RIGHT, BOTTOM, LEFT };