diff options
author | Jeffrey Stedfast <fejj@novell.com> | 2004-05-13 02:20:56 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-05-13 02:20:56 +0800 |
commit | 5a0f1a50cccee6794ca787f4db0cce8e67c7cf51 (patch) | |
tree | 09db5f274d8f1bd6e2518c1aff907943579ac687 /shell | |
parent | 07e0617cd6cfd0e7ff2dadfa415f9319f09a3bec (diff) | |
download | gsoc2013-evolution-5a0f1a50cccee6794ca787f4db0cce8e67c7cf51.tar.gz gsoc2013-evolution-5a0f1a50cccee6794ca787f4db0cce8e67c7cf51.tar.zst gsoc2013-evolution-5a0f1a50cccee6794ca787f4db0cce8e67c7cf51.zip |
Call e_icon_factory_shutdown() after bonobo_main() exits.
2004-05-12 Jeffrey Stedfast <fejj@novell.com>
* main.c (main): Call e_icon_factory_shutdown() after
bonobo_main() exits.
svn path=/trunk/; revision=25888
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/main.c | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 438b8d2c2a..7a2df3b204 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2004-05-12 Jeffrey Stedfast <fejj@novell.com> + + * main.c (main): Call e_icon_factory_shutdown() after + bonobo_main() exits. + 2004-05-12 Not Zed <NotZed@Ximian.com> * shell-errors.xml: fix the label tag for the upgrade failed box. diff --git a/shell/main.c b/shell/main.c index 215a5e0ce0..e2d561e739 100644 --- a/shell/main.c +++ b/shell/main.c @@ -570,7 +570,7 @@ main (int argc, char **argv) glade_init (); e_cursors_init (); e_icon_factory_init (); - + icon_list = e_icon_factory_get_icon_list ("stock_mail"); if (icon_list) { gtk_window_set_default_icon_list (icon_list); @@ -603,6 +603,8 @@ main (int argc, char **argv) g_idle_add (idle_cb, uri_list); bonobo_main (); - + + e_icon_factory_shutdown (); + return 0; } |