diff options
author | Rob Bradford <rob@linux.intel.com> | 2010-08-01 18:36:45 +0800 |
---|---|---|
committer | Rob Bradford <rob@linux.intel.com> | 2010-08-02 20:27:24 +0800 |
commit | 2dfabd3909d4afe12637160863884ea2c953cfac (patch) | |
tree | 263123ff34965ed147c62639d95d6c04e0e8d930 /modules/addressbook | |
parent | 68341973d40b9ac5ffbc3f4132af0656194df13e (diff) | |
download | gsoc2013-evolution-2dfabd3909d4afe12637160863884ea2c953cfac.tar.gz gsoc2013-evolution-2dfabd3909d4afe12637160863884ea2c953cfac.tar.zst gsoc2013-evolution-2dfabd3909d4afe12637160863884ea2c953cfac.zip |
addressbook: Port to use new _async suffix instead of _ex suffix
Diffstat (limited to 'modules/addressbook')
-rw-r--r-- | modules/addressbook/e-book-shell-backend.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/addressbook/e-book-shell-backend.c b/modules/addressbook/e-book-shell-backend.c index 0ae5dfbe61..6f3861dad0 100644 --- a/modules/addressbook/e-book-shell-backend.c +++ b/modules/addressbook/e-book-shell-backend.c @@ -243,12 +243,12 @@ action_contact_new_cb (GtkAction *action, book = e_book_new_default_addressbook (NULL); if (strcmp (action_name, "contact-new") == 0) - e_book_async_open_ex ( + e_book_open_async ( book, FALSE, book_shell_backend_new_contact_cb, shell); if (strcmp (action_name, "contact-new-list") == 0) - e_book_async_open_ex ( + e_book_open_async ( book, FALSE, book_shell_backend_new_contact_list_cb, shell); } |