aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mail/em-account-prefs.c
diff options
context:
space:
mode:
authorJonathon Jongsma <jonathon@quotidian.org>2009-11-25 13:12:36 +0800
committerJonathon Jongsma <jonathon@quotidian.org>2009-12-01 03:32:22 +0800
commit495e9bf8001e2209a35e8991c07ec038576efdd4 (patch)
treea4e661016c346c39e7e950a33d42f6b5ad97d991 /modules/mail/em-account-prefs.c
parent68d3608b81c2a980cd13352badfcfcfe59477c94 (diff)
downloadgsoc2013-evolution-495e9bf8001e2209a35e8991c07ec038576efdd4.tar
gsoc2013-evolution-495e9bf8001e2209a35e8991c07ec038576efdd4.tar.gz
gsoc2013-evolution-495e9bf8001e2209a35e8991c07ec038576efdd4.tar.bz2
gsoc2013-evolution-495e9bf8001e2209a35e8991c07ec038576efdd4.tar.lz
gsoc2013-evolution-495e9bf8001e2209a35e8991c07ec038576efdd4.tar.xz
gsoc2013-evolution-495e9bf8001e2209a35e8991c07ec038576efdd4.tar.zst
gsoc2013-evolution-495e9bf8001e2209a35e8991c07ec038576efdd4.zip
port modules/ to new EError API.
This should be everything now. https://bugzilla.gnome.org/show_bug.cgi?id=602963
Diffstat (limited to 'modules/mail/em-account-prefs.c')
-rw-r--r--modules/mail/em-account-prefs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mail/em-account-prefs.c b/modules/mail/em-account-prefs.c
index 0f86cd8341..d0cc34f608 100644
--- a/modules/mail/em-account-prefs.c
+++ b/modules/mail/em-account-prefs.c
@@ -82,7 +82,7 @@ account_prefs_disable_account_cb (EAccountTreeView *tree_view)
parent = gtk_widget_get_toplevel (GTK_WIDGET (tree_view));
parent = GTK_WIDGET_TOPLEVEL (parent) ? parent : NULL;
- response = e_error_run (
+ response = e_error_run_dialog_for_args (
parent, "mail:ask-delete-proxy-accounts", NULL);
if (response != GTK_RESPONSE_YES) {
@@ -201,7 +201,7 @@ account_prefs_delete_account (EAccountManager *manager)
has_proxies =
e_account_list_account_has_proxies (account_list, account);
- response = e_error_run (
+ response = e_error_run_dialog_for_args (
parent, has_proxies ?
"mail:ask-delete-account-with-proxies" :
"mail:ask-delete-account", NULL);