diff options
author | Chenthill Palanisamy <pchenthill@novell.com> | 2004-09-21 23:07:15 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2004-09-21 23:07:15 +0800 |
commit | 6518b7ac07aed168b016d0b71922c081a76948aa (patch) | |
tree | a8ea47386ee4c714038c83131beaea93d52d977f /calendar/gui | |
parent | d57d0b58a25fdcc94e894ff57629a4fbc2f304f1 (diff) | |
download | gsoc2013-evolution-6518b7ac07aed168b016d0b71922c081a76948aa.tar.gz gsoc2013-evolution-6518b7ac07aed168b016d0b71922c081a76948aa.tar.zst gsoc2013-evolution-6518b7ac07aed168b016d0b71922c081a76948aa.zip |
Fixes #65682 check the static capability before booking the deletion.
2004-09-21 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #65682
* gui/itip-utils.c
(itip_send_comp): check the static capability before
booking the deletion.
svn path=/trunk/; revision=27313
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/itip-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index ce893a48ec..d78d2994b6 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -845,7 +845,7 @@ itip_send_comp (ECalComponentItipMethod method, ECalComponent *send_comp, CORBA_exception_init (&ev); /* Give the server a chance to manipulate the comp */ - if (method != E_CAL_COMPONENT_METHOD_PUBLISH) { + if (method != E_CAL_COMPONENT_METHOD_PUBLISH && !e_cal_get_save_schedules (client)) { if (!comp_server_send (method, send_comp, client, zones, &users)) goto cleanup; } |