canonicalize PDB parameter names.

2005-08-04  Sven Neumann  <sven@gimp.org>

	* app/xcf/xcf.c: canonicalize PDB parameter names.
This commit is contained in:
Sven Neumann 2005-08-04 13:36:40 +00:00 committed by Sven Neumann
parent f5630fc1d6
commit a5809c4142
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2005-08-04 Sven Neumann <sven@gimp.org>
* app/xcf/xcf.c: canonicalize PDB parameter names.
2005-08-04 Michael Natterer <mitch@gimp.org>
* app/widgets/gimppaletteview.c: added cursor navigation.

View File

@ -63,13 +63,13 @@ static Argument * xcf_save_invoker (Gimp *gimp,
static ProcArg xcf_load_args[] =
{
{ GIMP_PDB_INT32,
"dummy_param",
"dummy-param",
"dummy parameter" },
{ GIMP_PDB_STRING,
"filename",
"The name of the file to load, in the on-disk character set and encoding" },
{ GIMP_PDB_STRING,
"raw_filename",
"raw-filename",
"The basename of the file, in UTF-8" }
};
@ -123,7 +123,7 @@ static PlugInProcDef xcf_plug_in_load_proc =
static ProcArg xcf_save_args[] =
{
{ GIMP_PDB_INT32,
"dummy_param",
"dummy-param",
"dummy parameter" },
{ GIMP_PDB_IMAGE,
"image",