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:
parent
cf9768e5b9
commit
bad4568f58
2 changed files with 12 additions and 0 deletions
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue