aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/alarm-notify
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2003-11-12 01:11:09 +0800
committerJP Rosevear <jpr@src.gnome.org>2003-11-12 01:11:09 +0800
commit6f57f92231266e6b194cf630851d4ac481cd43c1 (patch)
treeef966ea2b1431f27282279a07729463b42592066 /calendar/gui/alarm-notify
parent4ea4ea5d280f641bb5f3b6b3d1a8c05960e59bea (diff)
downloadgsoc2013-evolution-6f57f92231266e6b194cf630851d4ac481cd43c1.tar
gsoc2013-evolution-6f57f92231266e6b194cf630851d4ac481cd43c1.tar.gz
gsoc2013-evolution-6f57f92231266e6b194cf630851d4ac481cd43c1.tar.bz2
gsoc2013-evolution-6f57f92231266e6b194cf630851d4ac481cd43c1.tar.lz
gsoc2013-evolution-6f57f92231266e6b194cf630851d4ac481cd43c1.tar.xz
gsoc2013-evolution-6f57f92231266e6b194cf630851d4ac481cd43c1.tar.zst
gsoc2013-evolution-6f57f92231266e6b194cf630851d4ac481cd43c1.zip
use a standard calendar status (backend_cal_opened_online): ditto
2003-11-11 JP Rosevear <jpr@ximian.com> * gui/calendar-offline-handler.c (backend_cal_opened_offline): use a standard calendar status (backend_cal_opened_online): ditto * gui/alarm-notify/alarm-queue.c (cal_opened_cb): ditto * gui/gnome-cal.c (client_cal_opened_cb): ditto * gui/e-tasks.c (cal_opened_cb): ditto * gui/e-itip-control.c (default_server_started_cb): ditto * gui/e-cal-model.c (cal_opened_cb): ditto * gui/comp-editor-factory.c (cal_opened_cb): ditto svn path=/trunk/; revision=23286
Diffstat (limited to 'calendar/gui/alarm-notify')
-rw-r--r--calendar/gui/alarm-notify/alarm-queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c
index be9574d9d8..9a426f4f9d 100644
--- a/calendar/gui/alarm-notify/alarm-queue.c
+++ b/calendar/gui/alarm-notify/alarm-queue.c
@@ -428,13 +428,13 @@ load_missed_alarms (ClientAlarms *ca)
/* Called when a calendar client finished loading; we load its alarms */
static void
-cal_opened_cb (ECal *client, ECalOpenStatus status, gpointer data)
+cal_opened_cb (ECal *client, ECalendarStatus status, gpointer data)
{
ClientAlarms *ca;
ca = data;
- if (status != E_CAL_OPEN_SUCCESS)
+ if (status != E_CALENDAR_STATUS_OK)
return;
load_alarms_for_today (ca);