Reverted the patch I applied to fix the SOTA-Chrome bug. Yosh says he

will add a new GUINT8ARRAY type to the PDB to fix this the right way.
This commit is contained in:
Zach Beane 1999-09-21 18:53:32 +00:00
parent 48e8fa0141
commit ca29a71c71

View file

@ -539,7 +539,7 @@ curves_spline_invoker (Argument *args)
GimpDrawable *drawable;
gint32 channel;
gint32 num_points;
guint8 *control_pts;
gint8 *control_pts;
CurvesDialog cd;
int x1, y1, x2, y2;
int i, j;
@ -557,7 +557,7 @@ curves_spline_invoker (Argument *args)
if (num_points <= 3 || num_points > 32)
success = FALSE;
control_pts = (guint8 *) args[3].value.pdb_pointer;
control_pts = (gint8 *) args[3].value.pdb_pointer;
if (success)
{