aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/conduits/todo/todo-conduit.h
diff options
context:
space:
mode:
authorJP Rosevear <jpr@helixcode.com>2000-10-10 11:52:41 +0800
committerJP Rosevear <jpr@src.gnome.org>2000-10-10 11:52:41 +0800
commitcde356b32b161e110c3024eb414660fe5b8f516c (patch)
tree21dfd0104c871e9d48adf08413a4dfec2938c2eb /calendar/conduits/todo/todo-conduit.h
parenteb33178c5cd15a24fc23569d2d4fa9a61edd7079 (diff)
downloadgsoc2013-evolution-cde356b32b161e110c3024eb414660fe5b8f516c.tar
gsoc2013-evolution-cde356b32b161e110c3024eb414660fe5b8f516c.tar.gz
gsoc2013-evolution-cde356b32b161e110c3024eb414660fe5b8f516c.tar.bz2
gsoc2013-evolution-cde356b32b161e110c3024eb414660fe5b8f516c.tar.lz
gsoc2013-evolution-cde356b32b161e110c3024eb414660fe5b8f516c.tar.xz
gsoc2013-evolution-cde356b32b161e110c3024eb414660fe5b8f516c.tar.zst
gsoc2013-evolution-cde356b32b161e110c3024eb414660fe5b8f516c.zip
Adjust to using gnome-pilot-sync-abs conduit which is based on the latest
2000-10-09 JP Rosevear <jpr@helixcode.com> * conduits/*: Adjust to using gnome-pilot-sync-abs conduit which is based on the latest pilot link changes. svn path=/trunk/; revision=5812
Diffstat (limited to 'calendar/conduits/todo/todo-conduit.h')
-rw-r--r--calendar/conduits/todo/todo-conduit.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/calendar/conduits/todo/todo-conduit.h b/calendar/conduits/todo/todo-conduit.h
index 20eb9ddd2d..7b5ec6e43e 100644
--- a/calendar/conduits/todo/todo-conduit.h
+++ b/calendar/conduits/todo/todo-conduit.h
@@ -31,7 +31,7 @@
#include <gnome.h>
#include <pi-todo.h>
#include <gpilotd/gnome-pilot-conduit.h>
-#include <gpilotd/gnome-pilot-conduit-standard-abs.h>
+#include <gpilotd/gnome-pilot-conduit-sync-abs.h>
#include <cal-client/cal-client.h>
@@ -42,7 +42,7 @@ struct _EToDoLocalRecord {
Must be first in the structure, or instances of this
structure cannot be used by gnome-pilot-conduit-standard-abs.
*/
- LocalRecord local;
+ GnomePilotDesktopRecord local;
/* The corresponding Comp object */
CalComponent *comp;
@@ -65,11 +65,12 @@ struct _EToDoConduitContext {
time_t since;
GList *uids;
-
- GList *added;
- GList *modified;
- GList *deleted;
+ GList *changed;
+ GHashTable *added;
+ GHashTable *modified;
+ GHashTable *deleted;
+
GHashTable *map;
};