diff options
Diffstat (limited to 'calendar/conduits/todo/todo-conduit.h')
-rw-r--r-- | calendar/conduits/todo/todo-conduit.h | 13 |
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; }; |