diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/main.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 62345c4b81..6fe20bcd2e 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2004-06-17 Jeffrey Stedfast <fejj@ximian.com> + + * main.c (main): Call gnome_sound_init() before bonobo_main(). + 2004-06-09 Dan Winship <danw@novell.com> * check-empty.xpm, check-filled.xpm, check-missing.xpm: diff --git a/shell/main.c b/shell/main.c index 600842710b..5809c40f6d 100644 --- a/shell/main.c +++ b/shell/main.c @@ -54,6 +54,7 @@ #include <libgnome/gnome-i18n.h> #include <libgnome/gnome-util.h> +#include <libgnome/gnome-sound.h> #include <libgnomeui/gnome-ui-init.h> #include <bonobo/bonobo-main.h> @@ -600,7 +601,9 @@ main (int argc, char **argv) g_value_unset (&popt_context_value); g_idle_add (idle_cb, uri_list); - + + gnome_sound_init ("localhost"); + bonobo_main (); e_icon_factory_shutdown (); |