diff options
author | Milan Crha <mcrha@redhat.com> | 2010-12-15 00:44:16 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-12-15 00:44:16 +0800 |
commit | a6bce7b74b99cd8ade8280ca52fb968438e6bf78 (patch) | |
tree | e87b871dfec5c5754c1c29783a3b499ce81303cc /addressbook/gui/contact-editor | |
parent | ffa69c8bef51ccb6a0a06684605d85b364b2c667 (diff) | |
download | gsoc2013-evolution-a6bce7b74b99cd8ade8280ca52fb968438e6bf78.tar gsoc2013-evolution-a6bce7b74b99cd8ade8280ca52fb968438e6bf78.tar.gz gsoc2013-evolution-a6bce7b74b99cd8ade8280ca52fb968438e6bf78.tar.bz2 gsoc2013-evolution-a6bce7b74b99cd8ade8280ca52fb968438e6bf78.tar.lz gsoc2013-evolution-a6bce7b74b99cd8ade8280ca52fb968438e6bf78.tar.xz gsoc2013-evolution-a6bce7b74b99cd8ade8280ca52fb968438e6bf78.tar.zst gsoc2013-evolution-a6bce7b74b99cd8ade8280ca52fb968438e6bf78.zip |
Show common addressbook and calendar errors in an alert sink
Diffstat (limited to 'addressbook/gui/contact-editor')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c index e1794572a5..d071e9bab6 100644 --- a/addressbook/gui/contact-editor/e-contact-editor.c +++ b/addressbook/gui/contact-editor/e-contact-editor.c @@ -208,7 +208,7 @@ e_contact_editor_contact_added (EABEditor *editor, if (g_error_matches (error, E_BOOK_ERROR, E_BOOK_ERROR_CANCELLED)) return; - eab_error_dialog (_("Error adding contact"), error); + eab_error_dialog (NULL, _("Error adding contact"), error); } static void @@ -222,7 +222,7 @@ e_contact_editor_contact_modified (EABEditor *editor, if (g_error_matches (error, E_BOOK_ERROR, E_BOOK_ERROR_CANCELLED)) return; - eab_error_dialog (_("Error modifying contact"), error); + eab_error_dialog (NULL, _("Error modifying contact"), error); } static void @@ -236,7 +236,7 @@ e_contact_editor_contact_deleted (EABEditor *editor, if (g_error_matches (error, E_BOOK_ERROR, E_BOOK_ERROR_CANCELLED)) return; - eab_error_dialog (_("Error removing contact"), error); + eab_error_dialog (NULL, _("Error removing contact"), error); } static void @@ -2735,7 +2735,7 @@ contact_editor_book_loaded_cb (ESource *source, g_warn_if_fail (book == NULL); parent = eab_editor_get_window (EAB_EDITOR (editor)); - eab_load_error_dialog (GTK_WIDGET (parent), source, error); + eab_load_error_dialog (GTK_WIDGET (parent), NULL, source, error); source_combo_box = e_builder_get_widget ( editor->builder, "source-combo-box-source"); |