summaryrefslogtreecommitdiff
path: root/windows/gui.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2010-12-04 20:14:33 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2010-12-04 20:14:33 +0000
commit5eaeaed909495ddba462ea7e4d9954e772867844 (patch)
treedb21df0505ebf6e9cc852ae008b5cc4f0859a671 /windows/gui.c
parent632f7df653ae7636a89a2b6d9b7db88089f80129 (diff)
downloadnetsurf-5eaeaed909495ddba462ea7e4d9954e772867844.tar.gz
netsurf-5eaeaed909495ddba462ea7e4d9954e772867844.tar.bz2
Remove Hubbub and Wapcaplet initialisation and finalisation.
svn path=/trunk/netsurf/; revision=10980
Diffstat (limited to 'windows/gui.c')
-rw-r--r--windows/gui.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/windows/gui.c b/windows/gui.c
index 68fdf5969..18a67d355 100644
--- a/windows/gui.c
+++ b/windows/gui.c
@@ -30,8 +30,6 @@
#define _WIN32_IE (0x0501)
#include <commctrl.h>
-#include <hubbub/hubbub.h>
-
#include "content/urldb.h"
#include "content/fetch.h"
#include "css/utils.h"
@@ -2518,28 +2516,17 @@ void gui_cert_verify(const char *url, const struct ssl_cert_info *certs,
void gui_quit(void)
{
LOG(("gui_quit"));
-
- hubbub_finalise(ns_realloc, NULL);
}
static void gui_init(int argc, char** argv)
{
char buf[PATH_MAX], sbuf[PATH_MAX];
int len;
- hubbub_error he;
struct browser_window *bw;
const char *addr = NETSURF_HOMEPAGE;
LOG(("argc %d, argv %p", argc, argv));
- nsws_find_resource(buf, "Aliases", "./windows/res/Aliases");
- LOG(("Using '%s' as Aliases file", buf));
-
- he = hubbub_initialise(buf, ns_realloc, NULL);
- LOG(("hubbub init %d", he));
- if (he != HUBBUB_OK)
- die("Unable to initialise HTML parsing library.\n");
-
/* set up stylesheet urls */
getcwd(sbuf, PATH_MAX);
len = strlen(sbuf);