aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-list-editor/e-contact-list-editor.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2010-12-15 00:44:16 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:41:11 +0800
commit4231716442dc6bca34a563a17c068d126b37ea7c (patch)
tree53d1367972f62f1f867fcf0f06909af0b31c2484 /addressbook/gui/contact-list-editor/e-contact-list-editor.c
parentf18f55f251bcf12d7320b2f442daa0dcb1c40908 (diff)
downloadgsoc2013-evolution-4231716442dc6bca34a563a17c068d126b37ea7c.tar
gsoc2013-evolution-4231716442dc6bca34a563a17c068d126b37ea7c.tar.gz
gsoc2013-evolution-4231716442dc6bca34a563a17c068d126b37ea7c.tar.bz2
gsoc2013-evolution-4231716442dc6bca34a563a17c068d126b37ea7c.tar.lz
gsoc2013-evolution-4231716442dc6bca34a563a17c068d126b37ea7c.tar.xz
gsoc2013-evolution-4231716442dc6bca34a563a17c068d126b37ea7c.tar.zst
gsoc2013-evolution-4231716442dc6bca34a563a17c068d126b37ea7c.zip
Show common addressbook and calendar errors in an alert sink
Diffstat (limited to 'addressbook/gui/contact-list-editor/e-contact-list-editor.c')
-rw-r--r--addressbook/gui/contact-list-editor/e-contact-list-editor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/addressbook/gui/contact-list-editor/e-contact-list-editor.c b/addressbook/gui/contact-list-editor/e-contact-list-editor.c
index 2ffee04b91..7c5d9a9c98 100644
--- a/addressbook/gui/contact-list-editor/e-contact-list-editor.c
+++ b/addressbook/gui/contact-list-editor/e-contact-list-editor.c
@@ -221,7 +221,7 @@ contact_list_editor_book_loaded_cb (ESource *source,
GtkWindow *parent;
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);
e_source_combo_box_set_active (
E_SOURCE_COMBO_BOX (WIDGET (SOURCE_MENU)),
@@ -1157,7 +1157,7 @@ contact_list_editor_contact_added (EABEditor *editor,
if (g_error_matches (error, E_BOOK_ERROR, E_BOOK_ERROR_CANCELLED))
return;
- eab_error_dialog (_("Error adding list"), error);
+ eab_error_dialog (NULL, _("Error adding list"), error);
}
static void
@@ -1171,7 +1171,7 @@ contact_list_editor_contact_modified (EABEditor *editor,
if (g_error_matches (error, E_BOOK_ERROR, E_BOOK_ERROR_CANCELLED))
return;
- eab_error_dialog (_("Error modifying list"), error);
+ eab_error_dialog (NULL, _("Error modifying list"), error);
}
static void
@@ -1185,7 +1185,7 @@ contact_list_editor_contact_deleted (EABEditor *editor,
if (g_error_matches (error, E_BOOK_ERROR, E_BOOK_ERROR_CANCELLED))
return;
- eab_error_dialog (_("Error removing list"), error);
+ eab_error_dialog (NULL, _("Error removing list"), error);
}
static void