diff options
author | Matt McCutchen 2 <matt@mattmccutchen.net> | 2009-11-27 20:24:37 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-11-27 20:25:55 +0800 |
commit | 1ef281a1de4679a2e318b87cdc1a99927971f15f (patch) | |
tree | cf643e2bf330dfe8a3e48249ff53b58204c13933 | |
parent | ff36af25e8e1db585e7afc1936eea8bb7ef54c96 (diff) | |
download | gsoc2013-evolution-1ef281a1de4679a2e318b87cdc1a99927971f15f.tar gsoc2013-evolution-1ef281a1de4679a2e318b87cdc1a99927971f15f.tar.gz gsoc2013-evolution-1ef281a1de4679a2e318b87cdc1a99927971f15f.tar.bz2 gsoc2013-evolution-1ef281a1de4679a2e318b87cdc1a99927971f15f.tar.lz gsoc2013-evolution-1ef281a1de4679a2e318b87cdc1a99927971f15f.tar.xz gsoc2013-evolution-1ef281a1de4679a2e318b87cdc1a99927971f15f.tar.zst gsoc2013-evolution-1ef281a1de4679a2e318b87cdc1a99927971f15f.zip |
Bug #554779 - Removal of task due date does not sync from Palm
-rw-r--r-- | calendar/conduits/todo/todo-conduit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/conduits/todo/todo-conduit.c b/calendar/conduits/todo/todo-conduit.c index 89e012bfd7..d22038f403 100644 --- a/calendar/conduits/todo/todo-conduit.c +++ b/calendar/conduits/todo/todo-conduit.c @@ -909,7 +909,8 @@ comp_from_remote_record (GnomePilotConduitSyncAbs *conduit, due = tm_to_icaltimetype (&todo.due, TRUE); dt.value = &due; e_cal_component_set_due (comp, &dt); - } + } else + e_cal_component_set_due (comp, NULL); switch (todo.priority) { case 1: |