Bill Skaggs <weskaggs@primate.ucdavis.edu>
* 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:
@ -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>
|
2007-12-04 Bill Skaggs <weskaggs@primate.ucdavis.edu>
|
||||||
|
|
||||||
* tools/pdbgen/pdb/gradient.pdb
|
* tools/pdbgen/pdb/gradient.pdb
|
||||||
|
@ -2014,11 +2014,11 @@ image_set_filename_invoker (GimpProcedure *procedure,
|
|||||||
if (success)
|
if (success)
|
||||||
{
|
{
|
||||||
/* verify that the filename can be converted to UTF-8 and back */
|
/* 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)
|
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)
|
if (tmp)
|
||||||
g_free (tmp);
|
g_free (tmp);
|
||||||
|
@ -2117,11 +2117,11 @@ HELP
|
|||||||
code => <<'CODE'
|
code => <<'CODE'
|
||||||
{
|
{
|
||||||
/* verify that the filename can be converted to UTF-8 and back */
|
/* 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)
|
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)
|
if (tmp)
|
||||||
g_free (tmp);
|
g_free (tmp);
|
||||||
|
Reference in New Issue
Block a user