summaryrefslogtreecommitdiff
path: root/render/html_object.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_object.c
parenteadd589f6314f7b6f24d9fa86f3e5c79a4d6073a (diff)
downloadnetsurf-d4a01d525af02dd514189b70634f69b458258513.tar.gz
netsurf-d4a01d525af02dd514189b70634f69b458258513.tar.bz2
HTML: Remove some status bar updating code.
Diffstat (limited to 'render/html_object.c')
-rw-r--r--render/html_object.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/render/html_object.c b/render/html_object.c
index 335abd1fc..ce0f21f40 100644
--- a/render/html_object.c
+++ b/render/html_object.c
@@ -195,21 +195,6 @@ html_object_callback(hlcache_handle *object,
}
break;
- case CONTENT_MSG_STATUS:
- if (event->data.explicit_status_text == NULL) {
- /* Object content's status text updated */
- union content_msg_data data;
- data.explicit_status_text =
- content_get_status_message(object);
- html_set_status(c, data.explicit_status_text);
- content_broadcast(&c->base, CONTENT_MSG_STATUS, data);
- } else {
- /* Object content wants to set explicit message */
- content_broadcast(&c->base, CONTENT_MSG_STATUS,
- event->data);
- }
- break;
-
case CONTENT_MSG_REDRAW:
if (c->base.status != CONTENT_STATUS_LOADING) {
union content_msg_data data = event->data;
@@ -455,7 +440,6 @@ html_object_callback(hlcache_handle *object,
/* all objects have arrived */
content__reformat(&c->base, false, c->base.available_width,
c->base.height);
- html_set_status(c, "");
content_set_done(&c->base);
}