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. --- desktop/netsurf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'desktop/netsurf.c') diff --git a/desktop/netsurf.c b/desktop/netsurf.c index 2b01053f1..46d8d6728 100644 --- a/desktop/netsurf.c +++ b/desktop/netsurf.c @@ -106,14 +106,14 @@ static nserror netsurf_llcache_query_handler(const llcache_query *query, { switch (query->type) { case LLCACHE_QUERY_AUTH: - guit->browser->login(query->url, query->data.auth.realm, cb, cbpw); + guit->misc->login(query->url, query->data.auth.realm, cb, cbpw); break; case LLCACHE_QUERY_REDIRECT: /** \todo Need redirect query dialog */ /* For now, do nothing, as this query type isn't emitted yet */ break; case LLCACHE_QUERY_SSL: - guit->browser->cert_verify(query->url, query->data.ssl.certs, + guit->misc->cert_verify(query->url, query->data.ssl.certs, query->data.ssl.num, cb, cbpw); break; } @@ -245,7 +245,7 @@ void netsurf_exit(void) hlcache_stop(); LOG("Closing GUI"); - guit->browser->quit(); + guit->misc->quit(); LOG("Finalising JavaScript"); js_finalise(); -- cgit v1.2.3