added support for color arrays.

2008-07-14  Sven Neumann  <sven@gimp.org>

	* tools/pdbgen/app.pl: added support for color arrays.


svn path=/trunk/; revision=26191
This commit is contained in:
Sven Neumann 2008-07-14 14:44:13 +00:00 committed by Sven Neumann
parent cf9768e5b9
commit bad4568f58
2 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2008-07-14 Sven Neumann <sven@gimp.org>
* tools/pdbgen/app.pl: added support for color arrays.
2008-07-14 Sven Neumann <sven@gimp.org>
* app/pdb/gimp-pdb-compat.c (gimp_pdb_compat_arg_type_from_gtype):

View file

@ -485,6 +485,14 @@ gimp_param_spec_string_array ("$name",
"$nick",
"$blurb",
$flags)
CODE
}
elsif ($pdbtype eq 'colorarray') {
$pspec = <<CODE;
gimp_param_spec_color_array ("$name",
"$nick",
"$blurb",
$flags)
CODE
}
else {