diff options
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/em-utils.c | 2 |
2 files changed, 5 insertions, 1 deletions
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 <NotZed@Ximian.com> + + * em-utils.c (emu_can_save): fix the overwrite? question. #57822. + 2004-04-29 Not Zed <NotZed@Ximian.com> * 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; |