diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 3 | ||||
-rw-r--r-- | calendar/gui/main.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 6db40480ef..6cc383c4c1 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,8 @@ 2004-02-04 Rodrigo Moya <rodrigo@ximian.com> + * gui/main.c (launch_alarm_daemon_cb): display the exception message + on error. + * gui/gnome-cal.c (open_ecal): open calendars asynchronously. (client_cal_opened_cb): on success, add the clients to the models here. (gnome_calendar_add_event_source, gnome_calendar_construct): not here. diff --git a/calendar/gui/main.c b/calendar/gui/main.c index 838917244d..5441a140fa 100644 --- a/calendar/gui/main.c +++ b/calendar/gui/main.c @@ -100,7 +100,7 @@ launch_alarm_daemon_cb (gpointer data) an = bonobo_activation_activate_from_id ("OAFIID:GNOME_Evolution_Calendar_AlarmNotify:" BASE_VERSION, 0, NULL, &ev); if (BONOBO_EX (&ev)) { - g_message ("launch_alarm_daemon_cb(): Could not activate the alarm notification service"); + g_message ("launch_alarm_daemon_cb(): %s", bonobo_exception_get_text (&ev)); CORBA_exception_free (&ev); return FALSE; } |