diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-09-21 05:13:41 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-09-21 05:13:41 +0800 |
commit | 2f0f910e8113733d87dde0b51dbe3b925e7fc74e (patch) | |
tree | 297ee3d111e404bdc7a0047020687f017e594827 /calendar/pcs | |
parent | f8497c912d9418a6bef5082f6a77416859abf473 (diff) | |
download | gsoc2013-evolution-2f0f910e8113733d87dde0b51dbe3b925e7fc74e.tar gsoc2013-evolution-2f0f910e8113733d87dde0b51dbe3b925e7fc74e.tar.gz gsoc2013-evolution-2f0f910e8113733d87dde0b51dbe3b925e7fc74e.tar.bz2 gsoc2013-evolution-2f0f910e8113733d87dde0b51dbe3b925e7fc74e.tar.lz gsoc2013-evolution-2f0f910e8113733d87dde0b51dbe3b925e7fc74e.tar.xz gsoc2013-evolution-2f0f910e8113733d87dde0b51dbe3b925e7fc74e.tar.zst gsoc2013-evolution-2f0f910e8113733d87dde0b51dbe3b925e7fc74e.zip |
Add since field to context
2000-09-20 JP Rosevear <jpr@helixcode.com>
* conduits/todo/todo-conduit.h: Add since field to context
* conduits/todo/todo-conduit.c (map_set_node_timet): New utility
function
(map_sax_start_element): Look for the map timestamp as well
(map_write): Write the map timestamp
(pre_sync): Use the map time stamp when looking for changed entries
* pcs/cal-backend.c (cal_backend_log_sax_start_element): Make sure
we are in a valid timestamp
svn path=/trunk/; revision=5527
Diffstat (limited to 'calendar/pcs')
-rw-r--r-- | calendar/pcs/cal-backend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/pcs/cal-backend.c b/calendar/pcs/cal-backend.c index be92b2b031..d5609d59f1 100644 --- a/calendar/pcs/cal-backend.c +++ b/calendar/pcs/cal-backend.c @@ -595,7 +595,7 @@ cal_backend_log_sax_start_element (CalBackendParseState *state, const CHAR *name } } - if (!strcmp (name, "status")) { + if (state->in_valid_timestamp && !strcmp (name, "status")) { CalObjChange *coc = g_new0 (CalObjChange, 1); CalObjType cot = 0; |