aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorJonathon Jongsma <jonathon@quotidian.org>2009-11-25 06:49:36 +0800
committerJonathon Jongsma <jonathon@quotidian.org>2009-12-01 03:31:19 +0800
commitfff91b3bc66758f21a4040d7ec198318333e5150 (patch)
tree62bed0b4078ca671a2c9cb5ca27de7885e012108 /widgets
parent193625ae674a7dfd8a80c0ffeab390e6fcb65856 (diff)
downloadgsoc2013-evolution-fff91b3bc66758f21a4040d7ec198318333e5150.tar
gsoc2013-evolution-fff91b3bc66758f21a4040d7ec198318333e5150.tar.gz
gsoc2013-evolution-fff91b3bc66758f21a4040d7ec198318333e5150.tar.bz2
gsoc2013-evolution-fff91b3bc66758f21a4040d7ec198318333e5150.tar.lz
gsoc2013-evolution-fff91b3bc66758f21a4040d7ec198318333e5150.tar.xz
gsoc2013-evolution-fff91b3bc66758f21a4040d7ec198318333e5150.tar.zst
gsoc2013-evolution-fff91b3bc66758f21a4040d7ec198318333e5150.zip
port widgets/ to use new EError API
https://bugzilla.gnome.org/show_bug.cgi?id=602963
Diffstat (limited to 'widgets')
-rw-r--r--widgets/misc/e-signature-editor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/widgets/misc/e-signature-editor.c b/widgets/misc/e-signature-editor.c
index 699216784f..b5de5042ba 100644
--- a/widgets/misc/e-signature-editor.c
+++ b/widgets/misc/e-signature-editor.c
@@ -89,7 +89,7 @@ action_close_cb (GtkAction *action,
if (something_changed) {
gint response;
- response = e_error_run (
+ response = e_error_run_dialog_for_args (
GTK_WINDOW (editor),
"mail:ask-signature-changed", NULL);
if (response == GTK_RESPONSE_YES) {
@@ -144,7 +144,7 @@ action_save_and_close_cb (GtkAction *action,
gtkhtml_editor_save (GTKHTML_EDITOR (editor), filename, html, &error);
if (error != NULL) {
- e_error_run (
+ e_error_run_dialog_for_args (
GTK_WINDOW (editor),
"mail:no-save-signature",
error->message, NULL);
@@ -159,7 +159,7 @@ action_save_and_close_cb (GtkAction *action,
/* Make sure the signature name is not blank. */
if (*signature_name == '\0') {
- e_error_run (
+ e_error_run_dialog_for_args (
GTK_WINDOW (editor),
"mail:blank-signature", NULL);
gtk_widget_grab_focus (entry);
@@ -172,7 +172,7 @@ action_save_and_close_cb (GtkAction *action,
same_name = (ESignature *) e_signature_list_find (
signature_list, E_SIGNATURE_FIND_NAME, signature_name);
if (same_name != NULL && !e_signature_is_equal (signature, same_name)) {
- e_error_run (
+ e_error_run_dialog_for_args (
GTK_WINDOW (editor),
"mail:signature-already-exists",
signature_name, NULL);