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 --- modules/addressbook/e-book-shell-backend.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'modules/addressbook/e-book-shell-backend.c') diff --git a/modules/addressbook/e-book-shell-backend.c b/modules/addressbook/e-book-shell-backend.c index d0340f7974..652b7a5a73 100644 --- a/modules/addressbook/e-book-shell-backend.c +++ b/modules/addressbook/e-book-shell-backend.c @@ -230,7 +230,7 @@ book_shell_backend_init_importers (void) static void book_shell_backend_new_contact_cb (EBook *book, - EBookStatus status, + const GError *error, gpointer user_data) { EShell *shell; @@ -238,7 +238,7 @@ book_shell_backend_new_contact_cb (EBook *book, EABEditor *editor; /* XXX Handle errors better. */ - if (status != E_BOOK_ERROR_OK) + if (error) return; contact = e_contact_new (); @@ -255,7 +255,7 @@ book_shell_backend_new_contact_cb (EBook *book, static void book_shell_backend_new_contact_list_cb (EBook *book, - EBookStatus status, + const GError *error, gpointer user_data) { EShell *shell; @@ -263,7 +263,7 @@ book_shell_backend_new_contact_list_cb (EBook *book, EABEditor *editor; /* XXX Handle errors better. */ - if (status != E_BOOK_ERROR_OK) + if (error) return; contact = e_contact_new (); @@ -317,12 +317,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 ( + e_book_async_open_ex ( book, FALSE, book_shell_backend_new_contact_cb, shell); if (strcmp (action_name, "contact-new-list") == 0) - e_book_async_open ( + e_book_async_open_ex ( book, FALSE, book_shell_backend_new_contact_list_cb, shell); } -- cgit v1.2.3