app/perspective_tool.c app/rotate_tool.c app/scale_tool.c app/shear_tool.c
2000-02-21 Michael Natterer <mitch@gimp.org> * app/perspective_tool.c * app/rotate_tool.c * app/scale_tool.c * app/shear_tool.c * plug-ins/common/gauss_iir.c * plug-ins/common/gauss_rle.c: fix Solaris compilation problems reported by Ludovic Poitou <ludovic.poitou@france.sun.com>. * libgimp/gimppixmap.[ch]: new function gimp_pixmap_set(). * plug-ins/gfig/gfig.c: hacked the ui to use the libgimp widgets & constructors and slightly reorganized it to use fewer screen space (not yet perfect). Did a general namespace & code cleanup. * plug-ins/FractalExplorer/FractalExplorer.c: use a GimpPathEditor widget.
This commit is contained in:
committed by
Michael Natterer
parent
e42cece9b1
commit
0a5fadee17
@ -394,8 +394,8 @@ gauss_iir_dialog (void)
|
||||
gtk_widget_show (label);
|
||||
|
||||
spinbutton = gimp_spin_button_new (&adj,
|
||||
bvals.radius, 1.0, G_MAXDOUBLE, 1.0, 5.0,
|
||||
0, 1, 2);
|
||||
bvals.radius, 1.0, GIMP_MAX_IMAGE_SIZE,
|
||||
1.0, 5.0, 0, 1, 2);
|
||||
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, TRUE, TRUE, 0);
|
||||
gtk_signal_connect (GTK_OBJECT (adj), "value_changed",
|
||||
GTK_SIGNAL_FUNC (gimp_double_adjustment_update),
|
||||
|
||||
@ -391,8 +391,8 @@ gauss_rle_dialog (void)
|
||||
gtk_widget_show (label);
|
||||
|
||||
spinbutton = gimp_spin_button_new (&adj,
|
||||
bvals.radius, 1.0, G_MAXDOUBLE, 1.0, 5.0,
|
||||
0, 1, 2);
|
||||
bvals.radius, 1.0, GIMP_MAX_IMAGE_SIZE,
|
||||
1.0, 5.0, 0, 1, 2);
|
||||
gtk_box_pack_start (GTK_BOX (hbox), spinbutton, TRUE, TRUE, 0);
|
||||
gtk_signal_connect (GTK_OBJECT (adj), "value_changed",
|
||||
GTK_SIGNAL_FUNC (gimp_double_adjustment_update),
|
||||
|
||||
Reference in New Issue
Block a user