summaryrefslogtreecommitdiff
path: root/beos
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 /beos
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 'beos')
-rw-r--r--beos/beos_gui.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/beos/beos_gui.cpp b/beos/beos_gui.cpp
index c06b0c7fc..33ac00d36 100644
--- a/beos/beos_gui.cpp
+++ b/beos/beos_gui.cpp
@@ -42,8 +42,6 @@
extern "C" {
-#include <hubbub/hubbub.h>
-
#include "content/content.h"
#include "content/content_protected.h"
#include "content/fetch.h"
@@ -630,13 +628,6 @@ void gui_init(int argc, char** argv)
#endif
LOG(("Using '%s' as AdBlock CSS URL", adblock_stylesheet_url));
- find_resource(buf, "Aliases", "./beos/res/Aliases");
- LOG(("Using '%s' as aliases file", buf));
- if(hubbub_initialise(buf,myrealloc,NULL) != HUBBUB_OK)
- {
- die(messages_get("NoMemory"));
- }
-
urldb_load(option_url_file);
urldb_load_cookies(option_cookie_file);
@@ -773,7 +764,6 @@ void gui_quit(void)
CALLED();
urldb_save_cookies(option_cookie_jar);
urldb_save(option_url_file);
- hubbub_finalise(myrealloc,NULL);
//options_save_tree(hotlist,option_hotlist_file,messages_get("TreeHotlist"));
free(default_stylesheet_url);