summaryrefslogtreecommitdiff
path: root/render/html_object.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-04-15 22:50:28 +0100
committerVincent Sanders <vince@kyllikki.org>2016-04-16 23:50:21 +0100
commit33c7df0c40023cb1b0c17084680a21ee8e0229ea (patch)
tree2d3f4165be1dfb4c072ab8230dc7a5ea517bbdef /render/html_object.c
parent7b78985983216e940415a8bb8711e3e8b55f54b0 (diff)
downloadnetsurf-33c7df0c40023cb1b0c17084680a21ee8e0229ea.tar.gz
netsurf-33c7df0c40023cb1b0c17084680a21ee8e0229ea.tar.bz2
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.
Diffstat (limited to 'render/html_object.c')
-rw-r--r--render/html_object.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/render/html_object.c b/render/html_object.c
index 933950ec3..e30b3ab09 100644
--- a/render/html_object.c
+++ b/render/html_object.c
@@ -322,7 +322,7 @@ html_object_callback(hlcache_handle *object,
case CONTENT_MSG_REFRESH:
if (content_get_type(object) == CONTENT_HTML) {
/* only for HTML objects */
- guit->browser->schedule(event->data.delay * 1000,
+ guit->misc->schedule(event->data.delay * 1000,
html_object_refresh, o);
}
@@ -619,7 +619,7 @@ nserror html_object_close_objects(html_content *html)
continue;
if (content_get_type(object->content) == CONTENT_HTML) {
- guit->browser->schedule(-1, html_object_refresh, object);
+ guit->misc->schedule(-1, html_object_refresh, object);
}
content_close(object->content);
@@ -636,7 +636,7 @@ nserror html_object_free_objects(html_content *html)
LOG("object %p", victim->content);
if (content_get_type(victim->content) == CONTENT_HTML) {
- guit->browser->schedule(-1, html_object_refresh, victim);
+ guit->misc->schedule(-1, html_object_refresh, victim);
}
hlcache_handle_release(victim->content);
}