pass the new error down to all file functions which take GError arguments.
2007-12-03 Michael Natterer <mitch@gimp.org> * tools/pdbgen/pdb/fileops.pdb: pass the new error down to all file functions which take GError arguments. * app/pdb/fileops_cmds.c: regenerated. svn path=/trunk/; revision=24258
This commit is contained in:

committed by
Michael Natterer

parent
c1b28feec1
commit
b83b54898f
@ -1,3 +1,10 @@
|
|||||||
|
2007-12-03 Michael Natterer <mitch@gimp.org>
|
||||||
|
|
||||||
|
* tools/pdbgen/pdb/fileops.pdb: pass the new error down to all
|
||||||
|
file functions which take GError arguments.
|
||||||
|
|
||||||
|
* app/pdb/fileops_cmds.c: regenerated.
|
||||||
|
|
||||||
2007-12-02 Manish Singh <yosh@gimp.org>
|
2007-12-02 Manish Singh <yosh@gimp.org>
|
||||||
|
|
||||||
* app/dialogs/about-dialog.c (about_dialog_load_url): pass NULL
|
* app/dialogs/about-dialog.c (about_dialog_load_url): pass NULL
|
||||||
|
@ -69,7 +69,7 @@ file_load_invoker (GimpProcedure *procedure,
|
|||||||
return gimp_procedure_get_return_values (procedure, FALSE);
|
return gimp_procedure_get_return_values (procedure, FALSE);
|
||||||
|
|
||||||
file_proc =
|
file_proc =
|
||||||
file_procedure_find (gimp->plug_in_manager->load_procs, uri, NULL);
|
file_procedure_find (gimp->plug_in_manager->load_procs, uri, error);
|
||||||
|
|
||||||
g_free (uri);
|
g_free (uri);
|
||||||
|
|
||||||
@ -139,7 +139,7 @@ file_load_layer_invoker (GimpProcedure *procedure,
|
|||||||
|
|
||||||
layers = file_open_layers (gimp, context, progress,
|
layers = file_open_layers (gimp, context, progress,
|
||||||
image, FALSE,
|
image, FALSE,
|
||||||
uri, run_mode, NULL, &status, NULL);
|
uri, run_mode, NULL, &status, error);
|
||||||
|
|
||||||
if (layers)
|
if (layers)
|
||||||
{
|
{
|
||||||
@ -192,7 +192,7 @@ file_load_layers_invoker (GimpProcedure *procedure,
|
|||||||
|
|
||||||
layers = file_open_layers (gimp, context, progress,
|
layers = file_open_layers (gimp, context, progress,
|
||||||
image, FALSE,
|
image, FALSE,
|
||||||
uri, run_mode, NULL, &status, NULL);
|
uri, run_mode, NULL, &status, error);
|
||||||
|
|
||||||
if (layers)
|
if (layers)
|
||||||
{
|
{
|
||||||
@ -251,7 +251,7 @@ file_save_invoker (GimpProcedure *procedure,
|
|||||||
return gimp_procedure_get_return_values (procedure, FALSE);
|
return gimp_procedure_get_return_values (procedure, FALSE);
|
||||||
|
|
||||||
file_proc =
|
file_proc =
|
||||||
file_procedure_find (gimp->plug_in_manager->save_procs, uri, NULL);
|
file_procedure_find (gimp->plug_in_manager->save_procs, uri, error);
|
||||||
|
|
||||||
g_free (uri);
|
g_free (uri);
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ HELP
|
|||||||
return gimp_procedure_get_return_values (procedure, FALSE);
|
return gimp_procedure_get_return_values (procedure, FALSE);
|
||||||
|
|
||||||
file_proc =
|
file_proc =
|
||||||
file_procedure_find (gimp->plug_in_manager->load_procs, uri, NULL);
|
file_procedure_find (gimp->plug_in_manager->load_procs, uri, error);
|
||||||
|
|
||||||
g_free (uri);
|
g_free (uri);
|
||||||
|
|
||||||
@ -147,7 +147,7 @@ HELP
|
|||||||
|
|
||||||
layers = file_open_layers (gimp, context, progress,
|
layers = file_open_layers (gimp, context, progress,
|
||||||
image, FALSE,
|
image, FALSE,
|
||||||
uri, run_mode, NULL, &status, NULL);
|
uri, run_mode, NULL, &status, error);
|
||||||
|
|
||||||
if (layers)
|
if (layers)
|
||||||
{
|
{
|
||||||
@ -204,7 +204,7 @@ HELP
|
|||||||
|
|
||||||
layers = file_open_layers (gimp, context, progress,
|
layers = file_open_layers (gimp, context, progress,
|
||||||
image, FALSE,
|
image, FALSE,
|
||||||
uri, run_mode, NULL, &status, NULL);
|
uri, run_mode, NULL, &status, error);
|
||||||
|
|
||||||
if (layers)
|
if (layers)
|
||||||
{
|
{
|
||||||
@ -279,7 +279,7 @@ HELP
|
|||||||
return gimp_procedure_get_return_values (procedure, FALSE);
|
return gimp_procedure_get_return_values (procedure, FALSE);
|
||||||
|
|
||||||
file_proc =
|
file_proc =
|
||||||
file_procedure_find (gimp->plug_in_manager->save_procs, uri, NULL);
|
file_procedure_find (gimp->plug_in_manager->save_procs, uri, error);
|
||||||
|
|
||||||
g_free (uri);
|
g_free (uri);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user