aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/conduits
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2003-03-22 04:47:29 +0800
committerJP Rosevear <jpr@src.gnome.org>2003-03-22 04:47:29 +0800
commit46f7b6a608a604c6c0f0f817b56853f6e507aeba (patch)
tree3e84a8a39b92e1f6081245adf31f4c8cc43df762 /calendar/conduits
parentf1cfc02875041a11d9e0b353687d36d0d759d55d (diff)
downloadgsoc2013-evolution-46f7b6a608a604c6c0f0f817b56853f6e507aeba.tar
gsoc2013-evolution-46f7b6a608a604c6c0f0f817b56853f6e507aeba.tar.gz
gsoc2013-evolution-46f7b6a608a604c6c0f0f817b56853f6e507aeba.tar.bz2
gsoc2013-evolution-46f7b6a608a604c6c0f0f817b56853f6e507aeba.tar.lz
gsoc2013-evolution-46f7b6a608a604c6c0f0f817b56853f6e507aeba.tar.xz
gsoc2013-evolution-46f7b6a608a604c6c0f0f817b56853f6e507aeba.tar.zst
gsoc2013-evolution-46f7b6a608a604c6c0f0f817b56853f6e507aeba.zip
Fixes #32248
2003-03-21 JP Rosevear <jpr@ximian.com> Fixes #32248 * conduits/todo/todo-conduit.c (comp_from_remote_record): make sure the due date is actually a date svn path=/trunk/; revision=20459
Diffstat (limited to 'calendar/conduits')
-rw-r--r--calendar/conduits/todo/todo-conduit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c
index 98f586716d..c61f79f7d0 100644
--- a/calendar/conduits/todo/todo-conduit.c
+++ b/calendar/conduits/todo/todo-conduit.c
@@ -780,7 +780,7 @@ comp_from_remote_record (GnomePilotConduitSyncAbs *conduit,
}
if (!is_empty_time (todo.due)) {
- due = tm_to_icaltimetype (&todo.due, FALSE);
+ due = tm_to_icaltimetype (&todo.due, TRUE);
dt.value = &due;
cal_component_set_due (comp, &dt);
}