diff options
author | JP Rosevear <jpr@ximian.com> | 2001-01-23 04:09:19 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-01-23 04:09:19 +0800 |
commit | 7abbd4b41b93efb3791f5498a191ff99ae8361e0 (patch) | |
tree | f4222f0f1dc3ccccf18781838a566a9fc0610a7f /addressbook/conduit | |
parent | 4f646fd08b8f965144553f545d9044518465069e (diff) | |
download | gsoc2013-evolution-7abbd4b41b93efb3791f5498a191ff99ae8361e0.tar gsoc2013-evolution-7abbd4b41b93efb3791f5498a191ff99ae8361e0.tar.gz gsoc2013-evolution-7abbd4b41b93efb3791f5498a191ff99ae8361e0.tar.bz2 gsoc2013-evolution-7abbd4b41b93efb3791f5498a191ff99ae8361e0.tar.lz gsoc2013-evolution-7abbd4b41b93efb3791f5498a191ff99ae8361e0.tar.xz gsoc2013-evolution-7abbd4b41b93efb3791f5498a191ff99ae8361e0.tar.zst gsoc2013-evolution-7abbd4b41b93efb3791f5498a191ff99ae8361e0.zip |
Remove deleted records from the pilot map so we don't have dupes in the
001-01-21 JP Rosevear <jpr@ximian.com>
* conduit/address-conduit.c (delete_record): Remove
deleted records from the pilot map so we don't have dupes in the future
svn path=/trunk/; revision=7720
Diffstat (limited to 'addressbook/conduit')
-rw-r--r-- | addressbook/conduit/address-conduit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/addressbook/conduit/address-conduit.c b/addressbook/conduit/address-conduit.c index ec0856bc5a..aea9809732 100644 --- a/addressbook/conduit/address-conduit.c +++ b/addressbook/conduit/address-conduit.c @@ -973,13 +973,14 @@ delete_record (GnomePilotConduitSyncAbs *conduit, LOG ("delete_record: delete %s\n", print_local (local)); + e_pilot_map_remove_by_uid (ctxt->map, local->ecard->id); e_book_remove_card_by_id (ctxt->ebook, local->ecard->id, status_cb, &commit_status); gtk_main (); /* enter sub mainloop */ if (commit_status != E_BOOK_STATUS_SUCCESS && commit_status != E_BOOK_STATUS_CARD_NOT_FOUND) WARN ("delete_record: failed to delete card in ebook\n"); - + return retval; } |