diff options
author | Devashish Sharma <dsharma@src.gnome.org> | 2006-06-27 17:26:46 +0800 |
---|---|---|
committer | Devashish Sharma <dsharma@src.gnome.org> | 2006-06-27 17:26:46 +0800 |
commit | 5137c4537114e00ef1efa45803ae9909c25f35df (patch) | |
tree | 4d57d475ce1eeba2df709c23875d3caf075e3aa5 /addressbook/gui | |
parent | 5ef309b2a2fbd87b65f7159f80ea2a21d249dbcf (diff) | |
download | gsoc2013-evolution-5137c4537114e00ef1efa45803ae9909c25f35df.tar.gz gsoc2013-evolution-5137c4537114e00ef1efa45803ae9909c25f35df.tar.zst gsoc2013-evolution-5137c4537114e00ef1efa45803ae9909c25f35df.zip |
Fix for Bug#33691
svn path=/trunk/; revision=32197
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/eab-gui-util.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/addressbook/gui/widgets/eab-gui-util.c b/addressbook/gui/widgets/eab-gui-util.c index 62ca632acd..557699796b 100644 --- a/addressbook/gui/widgets/eab-gui-util.c +++ b/addressbook/gui/widgets/eab-gui-util.c @@ -661,8 +661,10 @@ do_delete (gpointer data, gpointer user_data) { EBook *book = user_data; EContact *contact = data; - - e_book_async_remove_contact(book, contact, contact_deleted_cb, NULL); + const char *id; + + id = e_contact_get_const (contact, E_CONTACT_UID); + e_book_remove_contact(book, id, NULL); } static void |