+2003-01-19 [alfons] 0.8.8claws122
+
+ * src/mimeview.c
+ mimeview_save_as(): we might as well show the file name for
+ the single case "Save As" too
+
2003-01-19 [alfons] 0.8.8claws121
* src/crash.c
gchar *filename;
gchar *defname = NULL;
MimeInfo *partinfo;
+ gchar *res;
if (!mimeview->opened) return;
if (!mimeview->file) return;
if (!filename) return;
if (is_file_exist(filename)) {
AlertValue aval;
-
- aval = alertpanel(_("Overwrite"),
- _("Overwrite existing file?"),
- _("OK"), _("Cancel"), NULL);
+ res = g_strdup_printf(_("Overwrite existing file '%s'?"),
+ filename);
+ aval = alertpanel(_("Overwrite"), res, _("OK"),
+ _("Cancel"), NULL);
+ g_free(res);
if (G_ALERTDEFAULT != aval) return;
}