convert the filename to UTF-8 before displaying it in the error message.

2008-09-11  Michael Natterer  <mitch@gimp.org>

	* plug-ins/script-fu/script-fu-scripts.c (script_fu_load_script):
	convert the filename to UTF-8 before displaying it in the error
	message.


svn path=/trunk/; revision=26923
This commit is contained in:
Michael Natterer 2008-09-11 08:49:49 +00:00 committed by Michael Natterer
parent 13a7c01115
commit 53d82016bc
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-09-11 Michael Natterer <mitch@gimp.org>
* plug-ins/script-fu/script-fu-scripts.c (script_fu_load_script):
convert the filename to UTF-8 before displaying it in the error
message.
2008-09-11 Michael Natterer <mitch@gimp.org>
* plug-ins/script-fu/script-fu-scripts.c (script_fu_run_command):

View File

@ -704,9 +704,12 @@ script_fu_load_script (const GimpDatafileData *file_data,
if (! script_fu_run_command (command, &error))
{
gchar *display_name = g_filename_display_name (file_data->filename);
g_message (_("Error while loading\n\"%s\"\n\n%s"),
file_data->filename, error->message);
display_name, error->message);
g_clear_error (&error);
g_free (display_name);
}
#ifdef G_OS_WIN32