diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-10-11 16:04:27 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-10-11 16:04:27 +0800 |
commit | c0f20d73a5e0d6c4af91fff32a53fe5c4ee96e47 (patch) | |
tree | 5903ad1fcc0fcae2dc77f285601c550da1f248e5 /calendar/conduits/todo/todo-conduit.h | |
parent | 4d5ebbc363352f20b4ffa21311f0db0df5d8023c (diff) | |
download | gsoc2013-evolution-c0f20d73a5e0d6c4af91fff32a53fe5c4ee96e47.tar.gz gsoc2013-evolution-c0f20d73a5e0d6c4af91fff32a53fe5c4ee96e47.tar.zst gsoc2013-evolution-c0f20d73a5e0d6c4af91fff32a53fe5c4ee96e47.zip |
The element is "pilot_id" not "pilotid". Update both maps (compute_pid):
2000-10-11 JP Rosevear <jpr@helixcode.com>
* conduits/todo/todo-conduit.c (map_sax_start_element): The
element is "pilot_id" not "pilotid". Update both maps
(compute_pid): Utility function to set a local records pid
(local_record_from_comp): Compute the pid and status here,
no longer use the old cal_component pilot interfaces
(free_match): Its a *local not a **local
* conduits/calendar/calendar-conduit.c: same as above
* conduits/todo/todo-conduit.h: Have both a uid and pid map
* conduits/todo/calendar-conduit.h: same as above
svn path=/trunk/; revision=5836
Diffstat (limited to 'calendar/conduits/todo/todo-conduit.h')
-rw-r--r-- | calendar/conduits/todo/todo-conduit.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/conduits/todo/todo-conduit.h b/calendar/conduits/todo/todo-conduit.h index 7b5ec6e43e..ecec89c35a 100644 --- a/calendar/conduits/todo/todo-conduit.h +++ b/calendar/conduits/todo/todo-conduit.h @@ -71,7 +71,8 @@ struct _EToDoConduitContext { GHashTable *modified; GHashTable *deleted; - GHashTable *map; + GHashTable *uid_map; + GHashTable *pid_map; }; #endif __TODO_CONDUIT_H__ |