summaryrefslogtreecommitdiff
path: root/render/html.c
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2016-02-10 16:07:53 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2016-02-10 16:09:16 +0000
commitd4a01d525af02dd514189b70634f69b458258513 (patch)
tree666a6dd7584dd169818ae01968fdd44831a9ed17 /render/html.c
parenteadd589f6314f7b6f24d9fa86f3e5c79a4d6073a (diff)
downloadnetsurf-d4a01d525af02dd514189b70634f69b458258513.tar.gz
netsurf-d4a01d525af02dd514189b70634f69b458258513.tar.bz2
HTML: Remove some status bar updating code.
Diffstat (limited to 'render/html.c')
-rw-r--r--render/html.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/render/html.c b/render/html.c
index cdd78e7d4..e7d2c4865 100644
--- a/render/html.c
+++ b/render/html.c
@@ -165,7 +165,6 @@ static void html_box_convert_done(html_content *c, bool success)
content_set_done(&c->base);
}
- html_set_status(c, "");
dom_node_unref(html);
}
@@ -1350,7 +1349,6 @@ static void html_stop(struct content *c)
/* If there are no further active fetches and we're still
* in the READY state, transition to the DONE state. */
if (c->status == CONTENT_STATUS_READY && c->active == 0) {
- html_set_status(htmlc, "");
content_set_done(c);
}
@@ -1606,15 +1604,6 @@ static nserror html_clone(const struct content *old, struct content **newc)
return true;
}
-/**
- * Set the content status.
- */
-
-void html_set_status(html_content *c, const char *extra)
-{
- content_set_status(&c->base, extra);
-}
-
/**
* Handle a window containing a CONTENT_HTML being opened.