From 2dfabd3909d4afe12637160863884ea2c953cfac Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Sun, 1 Aug 2010 11:36:45 +0100 Subject: addressbook: Port to use new _async suffix instead of _ex suffix --- addressbook/util/eab-book-util.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 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 a1827d3cc9..3cd301bd70 100644 --- a/addressbook/util/eab-book-util.c +++ b/addressbook/util/eab-book-util.c @@ -55,11 +55,11 @@ escape (const gchar *str) } guint -eab_name_and_email_query (EBook *book, - const gchar *name, - const gchar *email, - EBookListExCallback cb, - gpointer closure) +eab_name_and_email_query (EBook *book, + const gchar *name, + const gchar *email, + EBookListAsyncCallback cb, + gpointer closure) { gchar *email_query=NULL, *name_query=NULL; EBookQuery *query; @@ -119,7 +119,7 @@ eab_name_and_email_query (EBook *book, else return 0; - tag = e_book_async_get_contacts_ex (book, query, cb, closure); + tag = e_book_get_contacts_async (book, query, cb, closure); g_free (email_query); g_free (name_query); @@ -134,10 +134,10 @@ eab_name_and_email_query (EBook *book, * Simple nickname query */ guint -eab_nickname_query (EBook *book, +eab_nickname_query (EBook *book, const gchar *nickname, - EBookListExCallback cb, - gpointer closure) + EBookListAsyncCallback cb, + gpointer closure) { EBookQuery *query; gchar *query_string; @@ -154,7 +154,7 @@ eab_nickname_query (EBook *book, query = e_book_query_from_string (query_string); - retval = e_book_async_get_contacts_ex (book, query, cb, closure); + retval = e_book_get_contacts_async (book, query, cb, closure); g_free (query_string); e_book_query_unref (query); -- cgit v1.2.3