From 2828781d0d377824000442624971ae15855b9f8f Mon Sep 17 00:00:00 2001 From: Not Zed Date: Fri, 30 Apr 2004 03:57:56 +0000 Subject: fix the overwrite? question. #57822. 2004-04-30 Not Zed * em-utils.c (emu_can_save): fix the overwrite? question. #57822. svn path=/trunk/; revision=25699 --- mail/ChangeLog | 4 ++++ mail/em-utils.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 03ebe565ae..fb69665630 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2004-04-30 Not Zed + + * em-utils.c (emu_can_save): fix the overwrite? question. #57822. + 2004-04-29 Not Zed * mail-errors.xml.in: change all the session-message-* things to diff --git a/mail/em-utils.c b/mail/em-utils.c index 4b92555684..a5b927e7c2 100644 --- a/mail/em-utils.c +++ b/mail/em-utils.c @@ -1430,7 +1430,7 @@ emu_can_save(GtkWindow *parent, const char *path) return FALSE; } - return e_error_run(parent, "mail:ask-save-path-overwrite", path, NULL) == GTK_RESPONSE_OK; + return e_error_run(parent, E_ERROR_ASK_FILE_EXISTS_OVERWRITE, path, NULL) == GTK_RESPONSE_OK; } return TRUE; -- cgit