aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-model.c
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gui/calendar-model.c')
-rw-r--r--calendar/gui/calendar-model.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/calendar-model.c b/calendar/gui/calendar-model.c
index 2ab801cdf3..3721366cf0 100644
--- a/calendar/gui/calendar-model.c
+++ b/calendar/gui/calendar-model.c
@@ -1004,7 +1004,7 @@ set_datetime (CalendarModel *model, CalComponent *comp, const char *value,
CalComponentDateTime dt;
struct icaltimetype itt;
- itt = icaltime_from_timet (t, FALSE, TRUE);
+ itt = icaltime_from_timet (t, FALSE);
dt.value = &itt;
dt.tzid = NULL;
@@ -2001,7 +2001,7 @@ ensure_task_complete (CalComponent *comp,
}
if (set_completed) {
- new_completed = icaltime_from_timet (completed_date, FALSE, TRUE);
+ new_completed = icaltime_from_timet (completed_date, FALSE);
cal_component_set_completed (comp, &new_completed);
}