From 5137c4537114e00ef1efa45803ae9909c25f35df Mon Sep 17 00:00:00 2001 From: Devashish Sharma Date: Tue, 27 Jun 2006 09:26:46 +0000 Subject: Fix for Bug#33691 svn path=/trunk/; revision=32197 --- addressbook/gui/widgets/eab-gui-util.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'addressbook/gui/widgets/eab-gui-util.c') 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 -- cgit v1.2.3