mirror of https://github.com/GNOME/gimp.git
app/color_cmds.c
1999-10-04 Olof S Kylander <olof@gimp.org> * app/color_cmds.c fixed bug report 2306 and 2208
This commit is contained in:
parent
cdc3f6e779
commit
69b11b7343
|
@ -1,3 +1,9 @@
|
|||
1999-10-04 Olof S Kylander <olof@gimp.org>
|
||||
|
||||
* app/color_cmds.c
|
||||
|
||||
fixed bug report 2306 and 2208
|
||||
|
||||
1999-10-04 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/tool_options.c: backed out a change from last weekend that was
|
||||
|
|
|
@ -658,7 +658,7 @@ curves_explicit_invoker (Argument *args)
|
|||
GimpDrawable *drawable;
|
||||
gint32 channel;
|
||||
gint32 num_bytes;
|
||||
gint8 *curve;
|
||||
guint8 *curve;
|
||||
CurvesDialog cd;
|
||||
int x1, y1, x2, y2;
|
||||
int i, j;
|
||||
|
@ -676,7 +676,7 @@ curves_explicit_invoker (Argument *args)
|
|||
if (num_bytes <= 0)
|
||||
success = FALSE;
|
||||
|
||||
curve = (gint8 *) args[3].value.pdb_pointer;
|
||||
curve = (guint8 *) args[3].value.pdb_pointer;
|
||||
|
||||
if (success)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue