From 03d626856b294bc98919ac244e04e9b8821a681d Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Fri, 9 Jul 2010 14:29:51 +0200 Subject: Bug #623204 - Be able to report detailed errors from backends --- addressbook/util/eab-book-util.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'addressbook/util/eab-book-util.c') diff --git a/addressbook/util/eab-book-util.c b/addressbook/util/eab-book-util.c index 40180d4631..2b1966684e 100644 --- a/addressbook/util/eab-book-util.c +++ b/addressbook/util/eab-book-util.c @@ -58,7 +58,7 @@ guint eab_name_and_email_query (EBook *book, const gchar *name, const gchar *email, - EBookListCallback cb, + EBookListExCallback cb, gpointer closure) { gchar *email_query=NULL, *name_query=NULL; @@ -119,7 +119,7 @@ eab_name_and_email_query (EBook *book, else return 0; - tag = e_book_async_get_contacts (book, query, cb, closure); + tag = e_book_async_get_contacts_ex (book, query, cb, closure); g_free (email_query); g_free (name_query); @@ -136,7 +136,7 @@ eab_name_and_email_query (EBook *book, guint eab_nickname_query (EBook *book, const gchar *nickname, - EBookListCallback cb, + EBookListExCallback cb, gpointer closure) { EBookQuery *query; @@ -154,7 +154,7 @@ eab_nickname_query (EBook *book, query = e_book_query_from_string (query_string); - retval = e_book_async_get_contacts (book, query, cb, closure); + retval = e_book_async_get_contacts_ex (book, query, cb, closure); g_free (query_string); e_book_query_unref (query); -- cgit v1.2.3