From 33c7df0c40023cb1b0c17084680a21ee8e0229ea Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Fri, 15 Apr 2016 22:50:28 +0100 Subject: complete the rename of the gui browser table When the operations tables were created the browser table was renamed to miscellaneous except the actual rename patch was never applied, this fixes that situation. --- render/box_construct.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'render/box_construct.c') diff --git a/render/box_construct.c b/render/box_construct.c index adb450946..23d41203f 100644 --- a/render/box_construct.c +++ b/render/box_construct.c @@ -187,7 +187,7 @@ nserror dom_to_box(dom_node *n, html_content *c, box_construct_complete_cb cb) ctx->cb = cb; ctx->bctx = c->bctx; - return guit->browser->schedule(0, (void *)convert_xml_to_box, ctx); + return guit->misc->schedule(0, (void *)convert_xml_to_box, ctx); } /* mapping from CSS display to box type @@ -448,7 +448,7 @@ void convert_xml_to_box(struct box_construct_ctx *ctx) } while (++num_processed < max_processed_before_yield); /* More work to do: schedule a continuation */ - guit->browser->schedule(0, (void *)convert_xml_to_box, ctx); + guit->misc->schedule(0, (void *)convert_xml_to_box, ctx); } /** -- cgit v1.2.3