diff options
author | Not Zed <NotZed@Ximian.com> | 2004-04-30 11:57:56 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-04-30 11:57:56 +0800 |
commit | 2828781d0d377824000442624971ae15855b9f8f (patch) | |
tree | 95b443f2adbe6253b4d0817f0129e78e5648aa6b /mail | |
parent | 79201be1ace1861c63e237732b975848480ee4b5 (diff) | |
download | gsoc2013-evolution-2828781d0d377824000442624971ae15855b9f8f.tar.gz gsoc2013-evolution-2828781d0d377824000442624971ae15855b9f8f.tar.zst gsoc2013-evolution-2828781d0d377824000442624971ae15855b9f8f.zip |
fix the overwrite? question. #57822.
2004-04-30 Not Zed <NotZed@Ximian.com>
* em-utils.c (emu_can_save): fix the overwrite? question. #57822.
svn path=/trunk/; revision=25699
Diffstat (limited to 'mail')
-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; |