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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/calendar/gui/calendar-model.c b/calendar/gui/calendar-model.c
index 284940f525..7e8cc5665b 100644
--- a/calendar/gui/calendar-model.c
+++ b/calendar/gui/calendar-model.c
@@ -432,7 +432,6 @@ get_completed (CalendarModel *model,
int row)
{
CalendarModelPrivate *priv;
- CalComponentDateTime dt;
CalendarModelObjectData *object_data;
struct icaltimetype *completed;
@@ -446,7 +445,7 @@ get_completed (CalendarModel *model,
if (completed) {
object_data->completed = g_new (ECellDateEditValue, 1);
- object_data->completed->tt = *dt.value;
+ object_data->completed->tt = *completed;
object_data->completed->zone = icaltimezone_get_utc_timezone ();
cal_component_free_icaltimetype (completed);
} else {