summaryrefslogtreecommitdiff
path: root/render/box.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-03-02 17:50:51 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-03-02 17:50:51 +0000
commitf744c9dfa0b283af31eb9bada8ffb63809acb0db (patch)
tree6fe18e88c7bb40ec106655012912146f8a28fedc /render/box.c
parent4aef849eba41b28eb5ec8499627e1b98ae2a6b72 (diff)
downloadnetsurf-f744c9dfa0b283af31eb9bada8ffb63809acb0db.tar.gz
netsurf-f744c9dfa0b283af31eb9bada8ffb63809acb0db.tar.bz2
Make box flags and move new line indicator to it.
svn path=/trunk/netsurf/; revision=11886
Diffstat (limited to 'render/box.c')
-rw-r--r--render/box.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/box.c b/render/box.c
index 9021f3842..0f73cbe57 100644
--- a/render/box.c
+++ b/render/box.c
@@ -131,6 +131,7 @@ struct box * box_create(css_select_results *styles, css_computed_style *style,
talloc_set_destructor(box, free_box_style);
box->type = BOX_INLINE;
+ box->flags = 0;
box->styles = styles;
box->style = style;
box->style_owned = style_owned;
@@ -156,7 +157,6 @@ struct box * box_create(css_select_results *styles, css_computed_style *style,
box->columns = 1;
box->rows = 1;
box->start_column = 0;
- box->inline_new_line = false;
box->printed = false;
box->next = NULL;
box->prev = NULL;