summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2002-12-30 21:14:29 +0000
committerJames Bursa <james@netsurf-browser.org>2002-12-30 21:14:29 +0000
commit8cce8f76b46c4b8298db1c4bdf5c4d1cfe43c25c (patch)
tree7eadc9b9028ec11a47c1e9f490e96e4999c8b4a0
parent38178f3a155e46af6fe695196cbcdf11b4b7a6b5 (diff)
downloadnetsurf-8cce8f76b46c4b8298db1c4bdf5c4d1cfe43c25c.tar.gz
netsurf-8cce8f76b46c4b8298db1c4bdf5c4d1cfe43c25c.tar.bz2
[project @ 2002-12-30 21:14:29 by bursa]
Update xml_to_box call. svn path=/import/netsurf/; revision=75
-rw-r--r--desktop/browser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/browser.c b/desktop/browser.c
index a52562a4e..7c1ce1226 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -1,5 +1,5 @@
/**
- * $Id: browser.c,v 1.17 2002/12/29 22:27:35 monkeyson Exp $
+ * $Id: browser.c,v 1.18 2002/12/30 21:14:29 bursa Exp $
*/
#include "netsurf/riscos/font.h"
@@ -181,7 +181,7 @@ void content_html_reformat(struct content* c, int width)
c->data.html.fonts = font_new_set();
LOG(("XML to box"));
- xml_to_box(c->data.html.markup, c->data.html.style, c->data.html.stylesheet, &selector, 0, c->data.html.layout, 0, 0, c->data.html.fonts);
+ xml_to_box(c->data.html.markup, c->data.html.style, c->data.html.stylesheet, &selector, 0, c->data.html.layout, 0, 0, c->data.html.fonts, 0, 0);
LOG(("Layout document"));
layout_document(c->data.html.layout->children, (unsigned long)width);