diff options
author | JP Rosevear <jpr@ximian.com> | 2004-03-20 01:03:27 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-03-20 01:03:27 +0800 |
commit | 192898d3d00155d9d338310e23cdb12a569788f4 (patch) | |
tree | da8c9f7156466410c39fdf95b897fff4df18c33c /calendar/gui/gnome-cal.c | |
parent | 9ae0f1424515b21f952125b130cf4c841dac29f2 (diff) | |
download | gsoc2013-evolution-192898d3d00155d9d338310e23cdb12a569788f4.tar.gz gsoc2013-evolution-192898d3d00155d9d338310e23cdb12a569788f4.tar.zst gsoc2013-evolution-192898d3d00155d9d338310e23cdb12a569788f4.zip |
Fixes #55716
2004-03-19 JP Rosevear <jpr@ximian.com>
Fixes #55716
* gui/e-cal-model.c (remove_client): unset the default if the
client removed was the default
svn path=/trunk/; revision=25132
Diffstat (limited to 'calendar/gui/gnome-cal.c')
-rw-r--r-- | calendar/gui/gnome-cal.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 4b1bb840aa..853a60b297 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -1732,7 +1732,8 @@ client_cal_opened_cb (ECal *ecal, ECalendarStatus status, GnomeCalendar *gcal) e_calendar_view_set_status_message (E_CALENDAR_VIEW (gnome_calendar_get_current_view_widget (gcal)), NULL); - if (status == E_CALENDAR_STATUS_OK) { + if (0) { +// if (status == E_CALENDAR_STATUS_OK) { if (ecal == priv->task_pad_client) { msg = g_strdup_printf (_("Loading tasks at %s"), e_cal_get_uri (ecal)); e_calendar_view_set_status_message (E_CALENDAR_VIEW (gnome_calendar_get_current_view_widget (gcal)), msg); |