diff options
author | Milan Crha <mcrha@redhat.com> | 2011-02-24 16:23:03 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:37 +0800 |
commit | 14353865b4548366651b5fae278b90f7138b6d3b (patch) | |
tree | 5d30707b9e8f714f69271b127b88f84219b2d6cf /calendar/gui/dialogs | |
parent | 70a7e9d829267c71b842998496f693d6d5d078d5 (diff) | |
download | gsoc2013-evolution-14353865b4548366651b5fae278b90f7138b6d3b.tar.gz gsoc2013-evolution-14353865b4548366651b5fae278b90f7138b6d3b.tar.zst gsoc2013-evolution-14353865b4548366651b5fae278b90f7138b6d3b.zip |
Bug #642954 - Doesn't commit/abort sequence on modification error
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 769263e88a..2bb258b0e7 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -492,12 +492,11 @@ save_comp (CompEditor *editor) } result = e_cal_modify_object (priv->client, icalcomp, priv->mod, &error); - if (result && priv->mod == CALOBJ_MOD_THIS) { - /* FIXME do we really need to do this ? */ - if ((flags & COMP_EDITOR_DELEGATE) || + if (priv->mod == CALOBJ_MOD_THIS) { + if (result && ((flags & COMP_EDITOR_DELEGATE) || !e_cal_component_has_organizer (clone) || itip_organizer_is_user (clone, priv->client) || - itip_sentby_is_user (clone, priv->client)) + itip_sentby_is_user (clone, priv->client))) e_cal_component_commit_sequence (clone); else e_cal_component_abort_sequence (clone); |