From 8cd1f8a7544ef08a5997a17af9c14dd97b50ccd8 Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Thu, 10 Apr 2003 15:10:32 +0000 Subject: only remove the alarm for backends that want it (Exchange). 2003-04-10 Rodrigo Moya * gui/alarm-notify/alarm-queue.c (remove_queued_alarm): only remove the alarm for backends that want it (Exchange). svn path=/trunk/; revision=20801 --- calendar/ChangeLog | 5 +++++ calendar/gui/alarm-notify/alarm-queue.c | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'calendar') diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 0083402378..abab644a57 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2003-04-10 Rodrigo Moya + + * gui/alarm-notify/alarm-queue.c (remove_queued_alarm): only remove + the alarm for backends that want it (Exchange). + 2003-04-10 Rodrigo Moya * cal-util/cal-util.h: added #define's for static capabilities. diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c index f2bac1bc3d..f117e53723 100644 --- a/calendar/gui/alarm-notify/alarm-queue.c +++ b/calendar/gui/alarm-notify/alarm-queue.c @@ -217,7 +217,9 @@ remove_queued_alarm (CompQueuedAlarms *cqa, gpointer alarm_id, cqa->queued_alarms = g_slist_remove_link (cqa->queued_alarms, l); g_slist_free_1 (l); - if (remove_alarm) { + if (remove_alarm && + cal_client_get_static_capability (cqa->parent_client->client, + CAL_STATIC_CAPABILITY_REMOVE_ALARMS)) { cal_component_remove_alarm (cqa->alarms->comp, qa->instance->auid); cqa->expecting_update = TRUE; cal_client_update_object (cqa->parent_client->client, cqa->alarms->comp); -- cgit v1.2.3