* tools/pdbgen/pdb/image.pdb: pass "error" instead of NULL.
	* app/pdb/image_cmds.c: regenerated.

svn path=/trunk/; revision=24263
This commit is contained in:
William Skaggs
2007-12-04 19:49:19 +00:00
parent 283db3424a
commit c6a66349ed
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2007-12-04 Bill Skaggs <weskaggs@primate.ucdavis.edu>
* tools/pdbgen/pdb/image.pdb: pass "error" instead of NULL.
* app/pdb/image_cmds.c: regenerated.
2007-12-04 Bill Skaggs <weskaggs@primate.ucdavis.edu>
* tools/pdbgen/pdb/gradient.pdb

View File

@ -2014,11 +2014,11 @@ image_set_filename_invoker (GimpProcedure *procedure,
if (success)
{
/* verify that the filename can be converted to UTF-8 and back */
gchar *utf8 = g_filename_to_utf8 (filename, -1, NULL, NULL, NULL);
gchar *utf8 = g_filename_to_utf8 (filename, -1, NULL, NULL, error);
if (utf8)
{
gchar *tmp = g_filename_from_utf8 (utf8, -1, NULL, NULL, NULL);
gchar *tmp = g_filename_from_utf8 (utf8, -1, NULL, NULL, error);
if (tmp)
g_free (tmp);

View File

@ -2117,11 +2117,11 @@ HELP
code => <<'CODE'
{
/* verify that the filename can be converted to UTF-8 and back */
gchar *utf8 = g_filename_to_utf8 (filename, -1, NULL, NULL, NULL);
gchar *utf8 = g_filename_to_utf8 (filename, -1, NULL, NULL, error);
if (utf8)
{
gchar *tmp = g_filename_from_utf8 (utf8, -1, NULL, NULL, NULL);
gchar *tmp = g_filename_from_utf8 (utf8, -1, NULL, NULL, error);
if (tmp)
g_free (tmp);