summaryrefslogtreecommitdiff
path: root/framebuffer
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 /framebuffer
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 'framebuffer')
-rw-r--r--framebuffer/gui.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/framebuffer/gui.c b/framebuffer/gui.c
index 575a4c972..fa2ca2b66 100644
--- a/framebuffer/gui.c
+++ b/framebuffer/gui.c
@@ -27,8 +27,6 @@
#include <stdbool.h>
#include <stdlib.h>
-#include <hubbub/hubbub.h>
-
#include <libnsfb.h>
#include <libnsfb_plot.h>
#include <libnsfb_event.h>
@@ -445,11 +443,6 @@ gui_init(int argc, char** argv)
char buf[PATH_MAX];
nsfb_t *nsfb;
- fb_find_resource(buf, "Aliases", "./framebuffer/res/Aliases");
- LOG(("Using '%s' as Aliases file", buf));
- if (hubbub_initialise(buf, ns_realloc, NULL) != HUBBUB_OK)
- die("Unable to initialise HTML parsing library.\n");
-
option_core_select_menu = true;
/* set up stylesheet urls */
@@ -572,9 +565,6 @@ gui_quit(void)
urldb_save_cookies(option_cookie_jar);
framebuffer_finalise();
-
- /* We don't care if this fails as we're about to exit, anyway */
- hubbub_finalise(ns_realloc, NULL);
}
/* called back when click in browser window */