diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-07-29 21:40:34 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-07-29 21:40:34 +0800 |
commit | 5503603cce105a6c0f2b9992b63d58ec8c311c6a (patch) | |
tree | 46665bfbae04757c7e4d9495994f9efd7da20831 | |
parent | c97141a4c88581675369dfbb4b4f9506130a1e72 (diff) | |
download | gsoc2013-evolution-5503603cce105a6c0f2b9992b63d58ec8c311c6a.tar.gz gsoc2013-evolution-5503603cce105a6c0f2b9992b63d58ec8c311c6a.tar.zst gsoc2013-evolution-5503603cce105a6c0f2b9992b63d58ec8c311c6a.zip |
Fixes all "alarm daemon doesn't start with session"
2003-07-29 Rodrigo Moya <rodrigo@ximian.com>
Fixes all "alarm daemon doesn't start with session"
* gui/alarm-notify/notify-main.c (main): use LIBGNOMEUI_MODULE
instead of LIBGNOME_MODULE so that the default session client
is created in gnome_program_init.
svn path=/trunk/; revision=22011
-rw-r--r-- | calendar/ChangeLog | 16 | ||||
-rw-r--r-- | calendar/gui/alarm-notify/notify-main.c | 3 |
2 files changed, 14 insertions, 5 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 6a020f12f9..387baf8e4f 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,11 @@ +2003-07-29 Rodrigo Moya <rodrigo@ximian.com> + + Fixes all "alarm daemon doesn't start with session" + + * gui/alarm-notify/notify-main.c (main): use LIBGNOMEUI_MODULE + instead of LIBGNOME_MODULE so that the default session client + is created in gnome_program_init. + 2003-07-29 Harry Lu <harry.lu@sun.com> Fixes #46769 @@ -7,17 +15,17 @@ a task. 2003-07-29 Bolian Yin <bolian.yin@sun.com> - + Fixes #46847 - + * gui/e-day-view.c (e_day_view_get_next_tab_event, e_day_view_focus): add day view widget in the tab loop of events. * gui/e-week-view.c (e_week_view_get_next_tab_event, e_week_view_focus): add week view widget in the tab loop of events. - + Also: add some comments in gui/e-day-view.c and gui/e-week-view.c remove two compile warnings in gui/e-day-view.c - + 2003-07-24 Rodrigo Moya <rodrigo@ximian.com> * gui/e-cal-view.[ch] (e_cal_view_delete_selected_occurrence): diff --git a/calendar/gui/alarm-notify/notify-main.c b/calendar/gui/alarm-notify/notify-main.c index 31541204e3..03ef27fd9d 100644 --- a/calendar/gui/alarm-notify/notify-main.c +++ b/calendar/gui/alarm-notify/notify-main.c @@ -28,6 +28,7 @@ #include <libgnome/gnome-init.h> #include <libgnome/gnome-sound.h> #include <libgnomeui/gnome-client.h> +#include <libgnomeui/gnome-ui-init.h> #include <libgnomevfs/gnome-vfs-init.h> #include <glade/glade.h> #include <bonobo/bonobo-main.h> @@ -164,7 +165,7 @@ main (int argc, char **argv) bindtextdomain (GETTEXT_PACKAGE, EVOLUTION_LOCALEDIR); textdomain (GETTEXT_PACKAGE); - gnome_program_init ("evolution-alarm-notify", VERSION, LIBGNOME_MODULE, argc, argv, NULL); + gnome_program_init ("evolution-alarm-notify", VERSION, LIBGNOMEUI_MODULE, argc, argv, NULL); gtk_init (&argc, &argv); if (bonobo_init (&argc, argv) == FALSE) |