summaryrefslogtreecommitdiff
path: root/gtk/gtk_gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtk_gui.c')
-rw-r--r--gtk/gtk_gui.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gtk/gtk_gui.c b/gtk/gtk_gui.c
index fe35f1e2f..a2c98b9c5 100644
--- a/gtk/gtk_gui.c
+++ b/gtk/gtk_gui.c
@@ -35,6 +35,7 @@
#include "netsurf/gtk/options.h"
#include "netsurf/gtk/gtk_throbber.h"
#include "netsurf/gtk/gtk_history.h"
+#include "netsurf/gtk/gtk_filetype.h"
#include "netsurf/render/box.h"
#include "netsurf/render/form.h"
#include "netsurf/render/html.h"
@@ -212,6 +213,9 @@ void gui_init(int argc, char** argv)
LOG(("Using '%s' as Messages file", buf));
messages_load(buf);
+ find_resource(buf, "mime.types", "/etc/mime.types");
+ gtk_fetch_filetype_init(buf);
+
/* set up stylesheet urls */
find_resource(buf, "default.css", "./gtk/res/default.css");
default_stylesheet_url = path_to_url(buf);
@@ -321,6 +325,7 @@ void gui_quit(void)
free(adblock_stylesheet_url);
free(option_cookie_file);
free(option_cookie_jar);
+ gtk_fetch_filetype_fin();
}