From f6b0a33fd286c190814fb9e6c835f27552ad3186 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Tue, 14 Dec 2010 18:54:20 +0000 Subject: make the history, download, hotlist and cookies initialisation actually use the generic glade file finding code instead of their own thing and erroring out. svn path=/trunk/netsurf/; revision=11055 --- gtk/gtk_download.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gtk/gtk_download.c') diff --git a/gtk/gtk_download.c b/gtk/gtk_download.c index 4d58f389d..a91f25188 100644 --- a/gtk/gtk_download.c +++ b/gtk/gtk_download.c @@ -84,11 +84,11 @@ static gboolean nsgtk_download_handle_error (GError *error); -bool nsgtk_download_init() +bool nsgtk_download_init(const char *glade_file_location) { GladeXML *gladeFile; - gladeFile = glade_xml_new(glade_downloads_file_location, NULL, NULL); + gladeFile = glade_xml_new(glade_file_location, NULL, NULL); if (gladeFile == NULL) return false; -- cgit v1.2.3