From 34e6621ac12bc290cea08041e25b07f0ac3c51c9 Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Tue, 23 Jan 2001 20:58:23 +0000 Subject: libical import cleanup 2001-01-23 JP Rosevear * libical import cleanup svn path=/trunk/; revision=7753 --- calendar/conduits/todo/todo-conduit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'calendar/conduits/todo') diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c index 482737c4a5..f812532616 100644 --- a/calendar/conduits/todo/todo-conduit.c +++ b/calendar/conduits/todo/todo-conduit.c @@ -418,7 +418,7 @@ comp_from_remote_record (GnomePilotConduitSyncAbs *conduit, { CalComponent *comp; struct ToDo todo; - struct icaltimetype now = icaltime_from_timet (time (NULL), FALSE, TRUE); + struct icaltimetype now = icaltime_from_timet (time (NULL), FALSE); CalComponentText summary = {NULL, NULL}; CalComponentDateTime dt = {NULL, NULL}; struct icaltimetype due; @@ -466,7 +466,7 @@ comp_from_remote_record (GnomePilotConduitSyncAbs *conduit, } if (!is_empty_time (todo.due)) { - due = icaltime_from_timet (mktime (&todo.due), FALSE, TRUE); + due = icaltime_from_timet (mktime (&todo.due), FALSE); dt.value = &due; cal_component_set_due (comp, &dt); } -- cgit