aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/util/eab-book-util.c
diff options
context:
space:
mode:
authorRob Bradford <rob@linux.intel.com>2010-08-01 18:36:45 +0800
committerRob Bradford <rob@linux.intel.com>2010-08-02 20:27:24 +0800
commit2dfabd3909d4afe12637160863884ea2c953cfac (patch)
tree263123ff34965ed147c62639d95d6c04e0e8d930 /addressbook/util/eab-book-util.c
parent68341973d40b9ac5ffbc3f4132af0656194df13e (diff)
downloadgsoc2013-evolution-2dfabd3909d4afe12637160863884ea2c953cfac.tar
gsoc2013-evolution-2dfabd3909d4afe12637160863884ea2c953cfac.tar.gz
gsoc2013-evolution-2dfabd3909d4afe12637160863884ea2c953cfac.tar.bz2
gsoc2013-evolution-2dfabd3909d4afe12637160863884ea2c953cfac.tar.lz
gsoc2013-evolution-2dfabd3909d4afe12637160863884ea2c953cfac.tar.xz
gsoc2013-evolution-2dfabd3909d4afe12637160863884ea2c953cfac.tar.zst
gsoc2013-evolution-2dfabd3909d4afe12637160863884ea2c953cfac.zip
addressbook: Port to use new _async suffix instead of _ex suffix
Diffstat (limited to 'addressbook/util/eab-book-util.c')
-rw-r--r--addressbook/util/eab-book-util.c20
1 files changed, 10 insertions, 10 deletions
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);