aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/event-editor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/event-editor.c b/calendar/gui/event-editor.c
index d29b67b7fd..260b76d94e 100644
--- a/calendar/gui/event-editor.c
+++ b/calendar/gui/event-editor.c
@@ -951,7 +951,7 @@ dialog_to_comp_object (EventEditor *ee)
date.value = g_new (struct icaltimetype, 1);
t = e_dialog_dateedit_get (priv->start_time);
- *date.value = icaltime_from_timet (t, FALSE, TRUE);
+ *date.value = icaltime_from_timet (t, FALSE, FALSE);
date.tzid = NULL;
cal_component_set_dtstart (comp, &date);
@@ -962,7 +962,7 @@ dialog_to_comp_object (EventEditor *ee)
if (all_day_event)
t = time_day_end (t);
- *date.value = icaltime_from_timet (t, FALSE, TRUE);
+ *date.value = icaltime_from_timet (t, FALSE, FALSE);
cal_component_set_dtend (comp, &date);
g_free (date.value);