Fixed dumbass save code

-Yosh
This commit is contained in:
Manish Singh
1999-05-01 21:48:26 +00:00
parent e789291fa5
commit 26a9e37755
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Sat May 1 14:43:42 PDT 1999 Manish Singh <yosh@gimp.org>
* tools/pdbgen/pdb/fileops.pdb
* app/fileops_cmds.c: fixed dumbass save code
Sat May 1 22:18:55 BST 1999 Austin Donnelly <austin@gimp.org>
* app/brush_select.c

View File

@ -119,7 +119,7 @@ file_save_invoker (Argument *args)
PlugInProcDef *file_proc;
ProcRecord *proc;
file_proc = file_proc_find (load_procs, (gchar *) args[4].value.pdb_pointer);
file_proc = file_proc_find (save_procs, (gchar *) args[4].value.pdb_pointer);
if (!file_proc)
return procedural_db_return_args (&file_save_proc, FALSE);

View File

@ -128,7 +128,7 @@ HELP
vars => [ 'PlugInProcDef *file_proc', 'ProcRecord *proc' ],
code => <<'CODE'
{
file_proc = file_proc_find (load_procs, %%raw_filename%%);
file_proc = file_proc_find (save_procs, %%raw_filename%%);
if (!file_proc)
return %%fail%%;