aboutsummaryrefslogtreecommitdiffstats
path: root/composer/e-msg-composer-select-file.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-10-07 00:56:52 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-10-07 00:56:52 +0800
commitdbe2c18c4c4ed35437d7e779e02448778537585a (patch)
tree4ce174f08dabfd95e007d436936192dbc72e085c /composer/e-msg-composer-select-file.c
parent1441c34f007cc19dc5d33c0f16eca59535c2aa77 (diff)
downloadgsoc2013-evolution-dbe2c18c4c4ed35437d7e779e02448778537585a.tar
gsoc2013-evolution-dbe2c18c4c4ed35437d7e779e02448778537585a.tar.gz
gsoc2013-evolution-dbe2c18c4c4ed35437d7e779e02448778537585a.tar.bz2
gsoc2013-evolution-dbe2c18c4c4ed35437d7e779e02448778537585a.tar.lz
gsoc2013-evolution-dbe2c18c4c4ed35437d7e779e02448778537585a.tar.xz
gsoc2013-evolution-dbe2c18c4c4ed35437d7e779e02448778537585a.tar.zst
gsoc2013-evolution-dbe2c18c4c4ed35437d7e779e02448778537585a.zip
Don't blindly claim that the file exists and then ask the user if he/she
2003-09-26 Jeffrey Stedfast <fejj@ximian.com> * e-msg-composer.c (save): Don't blindly claim that the file exists and then ask the user if he/she would like to overwrite it. First check that the file even exists, if not - then we've got a different error. Fixes bug #48759. * e-msg-composer-select-file.c (e_msg_composer_select_file): Use the proper selector title, otherwise it says "Attach files" when we are trying to save a message. svn path=/trunk/; revision=22798
Diffstat (limited to 'composer/e-msg-composer-select-file.c')
-rw-r--r--composer/e-msg-composer-select-file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/composer/e-msg-composer-select-file.c b/composer/e-msg-composer-select-file.c
index 0ad89c220b..3726124837 100644
--- a/composer/e-msg-composer-select-file.c
+++ b/composer/e-msg-composer-select-file.c
@@ -99,7 +99,7 @@ e_msg_composer_select_file (EMsgComposer *composer, const char *title)
GtkFileSelection *selection;
char *name = NULL;
- selection = run_selector(composer, _("Attach file(s)"), TRUE, NULL);
+ selection = run_selector (composer, title, TRUE, NULL);
if (selection) {
name = g_strdup(gtk_file_selection_get_filename(selection));
gtk_widget_destroy((GtkWidget *)selection);