summaryrefslogtreecommitdiff
path: root/render/html.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-01-05 19:36:05 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-01-05 19:36:05 +0000
commit08ed4c207f7f8688075c84e4b3cd5ab73470c246 (patch)
tree90f517c899a05a61c64fca95746505ed94539266 /render/html.c
parent027726c4324663f391f070a759b5c730fc04dfe7 (diff)
downloadnetsurf-08ed4c207f7f8688075c84e4b3cd5ab73470c246.tar.gz
netsurf-08ed4c207f7f8688075c84e4b3cd5ab73470c246.tar.bz2
Update to new libcss API for simultanious selection for base element and its pseudo elements.
svn path=/trunk/netsurf/; revision=11215
Diffstat (limited to 'render/html.c')
-rw-r--r--render/html.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/render/html.c b/render/html.c
index db6409ec7..a624d9e16 100644
--- a/render/html.c
+++ b/render/html.c
@@ -1587,7 +1587,8 @@ void html_object_failed(struct box *box, struct content *content,
if (box->next) {
/* split this inline container into two inline
* containers */
- ic = box_create(0, false, 0, 0, 0, 0, content);
+ ic = box_create(NULL, 0, false, 0, 0, 0, 0,
+ content);
if (!ic) {
union content_msg_data msg_data;