diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-06-16 10:15:46 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-06-16 10:15:46 +0800 |
commit | c05c05cd3c32dc1253533e1c466a21fc6cf1b003 (patch) | |
tree | aae13dc1025d4904e500cd52b0507d809f5d35cb /mail/em-utils.c | |
parent | 8568b3caee7277c752d57e37430b8d76617e3ed3 (diff) | |
download | gsoc2013-evolution-c05c05cd3c32dc1253533e1c466a21fc6cf1b003.tar.gz gsoc2013-evolution-c05c05cd3c32dc1253533e1c466a21fc6cf1b003.tar.zst gsoc2013-evolution-c05c05cd3c32dc1253533e1c466a21fc6cf1b003.zip |
This code no longer needs to do charset conversion. Yay. Fixes bug #60225.
2004-06-15 Jeffrey Stedfast <fejj@ximian.com>
* mail-ops.c (save_part_save): This code no longer needs to do
charset conversion. Yay. Fixes bug #60225.
* em-utils.c (em_utils_save_part_to_file): Use the proper e-error
namespace.
svn path=/trunk/; revision=26358
Diffstat (limited to 'mail/em-utils.c')
-rw-r--r-- | mail/em-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-utils.c b/mail/em-utils.c index 6cc735e981..b0bed74546 100644 --- a/mail/em-utils.c +++ b/mail/em-utils.c @@ -452,7 +452,7 @@ em_utils_save_part_to_file(GtkWidget *parent, const char *filename, CamelMimePar } if (stat(filename, &st) != -1 && !S_ISREG(st.st_mode)) { - e_error_run((GtkWindow *)parent, "no-write-path-notfile", filename, NULL); + e_error_run((GtkWindow *)parent, "mail:no-write-path-notfile", filename, NULL); return FALSE; } |