app/plug-in/plug-in-params.c libgimp/gimp.[ch]
2006-06-25 Manish Singh <yosh@gimp.org> * app/plug-in/plug-in-params.c * libgimp/gimp.[ch] * libgimpbase/gimpprotocol.[ch] * plug-ins/common/colormap-remap.c * plug-ins/common/curve_bend.c * plug-ins/common/grid.c * plug-ins/pygimp/pygimp-pdb.c * plug-ins/script-fu/siod-wrapper.c * tools/pdbgen/pdb.pl: turn d_int8 and d_int8array into guint8. Fixes bug #344431.
This commit is contained in:

committed by
Manish Singh

parent
7cb2b3ec58
commit
f1e54be89d
@ -131,12 +131,12 @@ union _GimpParamData
|
||||
{
|
||||
gint32 d_int32;
|
||||
gint16 d_int16;
|
||||
gint8 d_int8;
|
||||
guint8 d_int8;
|
||||
gdouble d_float;
|
||||
gchar *d_string;
|
||||
gint32 *d_int32array;
|
||||
gint16 *d_int16array;
|
||||
gint8 *d_int8array;
|
||||
guint8 *d_int8array;
|
||||
gdouble *d_floatarray;
|
||||
gchar **d_stringarray;
|
||||
GimpRGB d_color;
|
||||
|
Reference in New Issue
Block a user