diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-12-19 16:07:47 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-12-19 16:07:47 +0800 |
commit | ec33c97f36d8332561a1df41cef1ad4fc8357aa2 (patch) | |
tree | 74aff5fc56e9805f450011fa715aa178730972f8 /calendar/gui/e-cal-model.c | |
parent | cb4e1dfd827ee5a3cd5106be848614e4f33e7ea6 (diff) | |
download | gsoc2013-evolution-ec33c97f36d8332561a1df41cef1ad4fc8357aa2.tar.gz gsoc2013-evolution-ec33c97f36d8332561a1df41cef1ad4fc8357aa2.tar.zst gsoc2013-evolution-ec33c97f36d8332561a1df41cef1ad4fc8357aa2.zip |
Fixes #324195
svn path=/trunk/; revision=30872
Diffstat (limited to 'calendar/gui/e-cal-model.c')
-rw-r--r-- | calendar/gui/e-cal-model.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/calendar/gui/e-cal-model.c b/calendar/gui/e-cal-model.c index 8c0149cff6..757892d43f 100644 --- a/calendar/gui/e-cal-model.c +++ b/calendar/gui/e-cal-model.c @@ -2108,6 +2108,15 @@ e_cal_model_set_instance_times (ECalModelComponent *comp_data, icaltimezone *zon start_time = icalcomponent_get_dtstart (comp_data->icalcomp); end_time = icalcomponent_get_dtend (comp_data->icalcomp); + if (start_time.is_date && end_time.is_date && (icaltime_compare_date_only (start_time, end_time) == 0)) { + /* If both DTSTART and DTEND are DATE values, and they are the + same day, we add 1 day to DTEND. This means that most + events created with the old Evolution behavior will still + work OK. */ + icaltime_adjust (&end_time, 1, 0, 0, 0); + icalcomponent_set_dtend (comp_data->icalcomp, end_time); + } + comp_data->instance_start = icaltime_as_timet_with_zone (start_time, zone); comp_data->instance_end = comp_data->instance_start + |