aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/main.c6
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;
}