Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/main.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2005-05-10 12:48:34 (GMT)
committer Marco Pesenti Gritti <marco@src.gnome.org>2005-05-10 12:48:34 (GMT)
commit11368f9b50db86ce4f2ae0b549fb575a19af2a74 (patch)
tree5f02e8a9866a686206b7c7d0780434eb07ed0996 /shell/main.c
parentdd069072f579528c60487d996d00d2814d33a81b (diff)
Put the toolbar xml in evince own dot dir
2005-05-10 Marco Pesenti Gritti <mpg@redhat.com> * lib/Makefile.am: * shell/ev-window.c: (ev_window_cmd_edit_toolbar_cb), (ev_window_init): * shell/main.c: (main): Put the toolbar xml in evince own dot dir
Diffstat (limited to 'shell/main.c')
-rw-r--r--shell/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/shell/main.c b/shell/main.c
index 321334b..b0a0b76 100644
--- a/shell/main.c
+++ b/shell/main.c
@@ -32,6 +32,7 @@
#include "ev-stock-icons.h"
#include "ev-debug.h"
#include "ev-job-queue.h"
+#include "ev-file-helpers.h"
static struct poptOption popt_options[] =
{
@@ -87,6 +88,7 @@ main (int argc, char *argv[])
ev_job_queue_init ();
g_set_application_name (_("Evince Document Viewer"));
+ ev_file_helpers_init ();
ev_debug_init ();
ev_stock_icons_init ();
gtk_window_set_default_icon_name ("postscript-viewer");
@@ -102,6 +104,7 @@ main (int argc, char *argv[])
gnome_accelerators_sync ();
poptFreeContext (context);
+ ev_file_helpers_shutdown ();
return 0;
}