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:
Michael Natterer 2007-12-03 19:29:10 +00:00 committed by Michael Natterer
parent c1b28feec1
commit b83b54898f
3 changed files with 15 additions and 8 deletions

View File

@ -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>
* app/dialogs/about-dialog.c (about_dialog_load_url): pass NULL

View File

@ -69,7 +69,7 @@ file_load_invoker (GimpProcedure *procedure,
return gimp_procedure_get_return_values (procedure, FALSE);
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);
@ -139,7 +139,7 @@ file_load_layer_invoker (GimpProcedure *procedure,
layers = file_open_layers (gimp, context, progress,
image, FALSE,
uri, run_mode, NULL, &status, NULL);
uri, run_mode, NULL, &status, error);
if (layers)
{
@ -192,7 +192,7 @@ file_load_layers_invoker (GimpProcedure *procedure,
layers = file_open_layers (gimp, context, progress,
image, FALSE,
uri, run_mode, NULL, &status, NULL);
uri, run_mode, NULL, &status, error);
if (layers)
{
@ -251,7 +251,7 @@ file_save_invoker (GimpProcedure *procedure,
return gimp_procedure_get_return_values (procedure, FALSE);
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);

View File

@ -66,7 +66,7 @@ HELP
return gimp_procedure_get_return_values (procedure, FALSE);
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);
@ -147,7 +147,7 @@ HELP
layers = file_open_layers (gimp, context, progress,
image, FALSE,
uri, run_mode, NULL, &status, NULL);
uri, run_mode, NULL, &status, error);
if (layers)
{
@ -204,7 +204,7 @@ HELP
layers = file_open_layers (gimp, context, progress,
image, FALSE,
uri, run_mode, NULL, &status, NULL);
uri, run_mode, NULL, &status, error);
if (layers)
{
@ -279,7 +279,7 @@ HELP
return gimp_procedure_get_return_values (procedure, FALSE);
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);