aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/conduits/todo
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-01-24 04:58:23 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-01-24 04:58:23 +0800
commit34e6621ac12bc290cea08041e25b07f0ac3c51c9 (patch)
tree4b2326cfec7cfa6737b014f3f9436036f7df1d4d /calendar/conduits/todo
parent5d7f815b3eede63ce843c7de7a3d2302c6b93586 (diff)
downloadgsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.tar
gsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.tar.gz
gsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.tar.bz2
gsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.tar.lz
gsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.tar.xz
gsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.tar.zst
gsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.zip
libical import cleanup
2001-01-23 JP Rosevear <jpr@ximian.com> * libical import cleanup svn path=/trunk/; revision=7753
Diffstat (limited to 'calendar/conduits/todo')
-rw-r--r--calendar/conduits/todo/todo-conduit.c4
1 files changed, 2 insertions, 2 deletions
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);
}