diff options
author | Matt McCutchen 2 <matt@mattmccutchen.net> | 2009-11-27 20:23:32 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-11-27 20:23:32 +0800 |
commit | 77786ffd8457b704854f5572269a891103aad43b (patch) | |
tree | b44a88de15fe6730fc9e112f5eaf52ae6baaae97 /calendar/conduits | |
parent | 598a549f319eae0d80248db80c688a2967c23b6f (diff) | |
download | gsoc2013-evolution-77786ffd8457b704854f5572269a891103aad43b.tar.gz gsoc2013-evolution-77786ffd8457b704854f5572269a891103aad43b.tar.zst gsoc2013-evolution-77786ffd8457b704854f5572269a891103aad43b.zip |
Bug #554779 - Removal of task due date does not sync from Palm
Diffstat (limited to 'calendar/conduits')
-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 a625cc7c39..fd1e906da7 100644 --- a/calendar/conduits/todo/todo-conduit.c +++ b/calendar/conduits/todo/todo-conduit.c @@ -913,7 +913,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: |