summaryrefslogtreecommitdiff
path: root/render/box.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2002-05-27 23:21:11 +0000
committerJames Bursa <james@netsurf-browser.org>2002-05-27 23:21:11 +0000
commitce0d001eb13221644242270985975e967a32b297 (patch)
treec31e951ba1c65542c37660121147230fbab7e92f /render/box.h
parent16f1b4d913430975e1c52077a110c483cbf570cc (diff)
downloadnetsurf-ce0d001eb13221644242270985975e967a32b297.tar.gz
netsurf-ce0d001eb13221644242270985975e967a32b297.tar.bz2
[project @ 2002-05-27 23:21:11 by bursa]
Simple left float implementation. svn path=/import/netsurf/; revision=19
Diffstat (limited to 'render/box.h')
-rw-r--r--render/box.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/render/box.h b/render/box.h
index cdde9b0e8..9140fd9ed 100644
--- a/render/box.h
+++ b/render/box.h
@@ -1,5 +1,5 @@
/**
- * $Id: box.h,v 1.1 2002/05/04 19:57:18 bursa Exp $
+ * $Id: box.h,v 1.2 2002/05/27 23:21:11 bursa Exp $
*/
/**
@@ -18,6 +18,8 @@ struct box {
struct box * children;
struct box * last;
struct box * parent;
+ struct box * float_children;
+ struct box * next_float;
font_id font;
};