mirror of https://github.com/GNOME/gimp.git
convert the filename to UTF-8 before displaying it.
2004-04-13 Sven Neumann <sven@gimp.org> * plug-ins/imagemap/imap_file.c (do_file_error_dialog): convert the filename to UTF-8 before displaying it.
This commit is contained in:
parent
069489fb71
commit
44770220f9
|
@ -1,3 +1,8 @@
|
||||||
|
2004-04-13 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* plug-ins/imagemap/imap_file.c (do_file_error_dialog): convert
|
||||||
|
the filename to UTF-8 before displaying it.
|
||||||
|
|
||||||
2004-04-13 Michael Natterer <mitch@gimp.org>
|
2004-04-13 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
GimpItem undo group cleanup in preparation of fixing bug #138356:
|
GimpItem undo group cleanup in preparation of fixing bug #138356:
|
||||||
|
|
|
@ -152,7 +152,7 @@ do_file_error_dialog(const char *error, const char *filename)
|
||||||
if (!alert)
|
if (!alert)
|
||||||
alert = create_alert(GTK_STOCK_DIALOG_ERROR);
|
alert = create_alert(GTK_STOCK_DIALOG_ERROR);
|
||||||
|
|
||||||
alert_set_text(alert, error, filename);
|
alert_set_text(alert, error, gimp_filename_to_utf8 (filename));
|
||||||
|
|
||||||
default_dialog_show(alert->dialog);
|
default_dialog_show(alert->dialog);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue