diff options
author | Fabiano FidĂȘncio <fidencio@redhat.com> | 2013-08-22 21:22:54 +0800 |
---|---|---|
committer | Fabiano FidĂȘncio <fidencio@redhat.com> | 2013-08-27 07:52:02 +0800 |
commit | 781cd7ccf1a95534c410e5c5b5fd821cdc795e21 (patch) | |
tree | 907ff33b6c834c7a4987ad256636f70f95ee5375 | |
parent | aa255972359662e58c34db33320e0377060de1b0 (diff) | |
download | gsoc2013-evolution-781cd7ccf1a95534c410e5c5b5fd821cdc795e21.tar gsoc2013-evolution-781cd7ccf1a95534c410e5c5b5fd821cdc795e21.tar.gz gsoc2013-evolution-781cd7ccf1a95534c410e5c5b5fd821cdc795e21.tar.bz2 gsoc2013-evolution-781cd7ccf1a95534c410e5c5b5fd821cdc795e21.tar.lz gsoc2013-evolution-781cd7ccf1a95534c410e5c5b5fd821cdc795e21.tar.xz gsoc2013-evolution-781cd7ccf1a95534c410e5c5b5fd821cdc795e21.tar.zst gsoc2013-evolution-781cd7ccf1a95534c410e5c5b5fd821cdc795e21.zip |
Bug #658164 - Pressing the "Make this Occurrence Movable" changes meeting time
-rw-r--r-- | modules/calendar/e-cal-shell-view-actions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/calendar/e-cal-shell-view-actions.c b/modules/calendar/e-cal-shell-view-actions.c index b59a3f3ef4..aa890c26ef 100644 --- a/modules/calendar/e-cal-shell-view-actions.c +++ b/modules/calendar/e-cal-shell-view-actions.c @@ -986,7 +986,7 @@ action_event_occurrence_movable_cb (GtkAction *action, cal_comp_set_dtstart_with_oldzone (client, exception_component, &date); *date.value = icaltime_from_timet_with_zone ( event->comp_data->instance_end, FALSE, timezone); - cal_comp_set_dtstart_with_oldzone (client, exception_component, &date); + cal_comp_set_dtend_with_oldzone (client, exception_component, &date); e_cal_component_commit_sequence (exception_component); /* Now update both ECalComponents. Note that we do this last |