diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-10-20 12:57:01 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-10-20 12:57:01 +0800 |
commit | e21c5fe007fc309c1d90460e3cac65331f960056 (patch) | |
tree | db87816aadb5344b0885e165afb7b768e4e9c238 /calendar/gui | |
parent | dff84c06b09b4883e73758a08b3b285185c6f120 (diff) | |
download | gsoc2013-evolution-e21c5fe007fc309c1d90460e3cac65331f960056.tar.gz gsoc2013-evolution-e21c5fe007fc309c1d90460e3cac65331f960056.tar.zst gsoc2013-evolution-e21c5fe007fc309c1d90460e3cac65331f960056.zip |
Milan Crha <mcrha@redhat.com> ** Fix for bug #553715 (Set end time for the event properly, not same as start time).
svn path=/trunk/; revision=36661
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/e-week-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index 5e9a88c782..bd308ac35c 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -3613,12 +3613,12 @@ e_week_view_on_editing_stopped (EWeekView *week_view, e_cal_component_get_dtend (comp, &dt); if (dt.value->zone) { - *dt.value = icaltime_from_timet_with_zone ( + tt = icaltime_from_timet_with_zone ( event->comp_data->instance_end, dt.value->is_date, dt.value->zone); } else { - *dt.value = icaltime_from_timet_with_zone ( + tt = icaltime_from_timet_with_zone ( event->comp_data->instance_end, dt.value->is_date, e_calendar_view_get_timezone (E_CALENDAR_VIEW (week_view))); |