mirror of https://github.com/GNOME/gimp.git
forgot some casts.
2002-03-08 Michael Natterer <mitch@gimp.org> * app/widgets/gimpbrushfactoryview.c: forgot some casts.
This commit is contained in:
parent
5e470786a0
commit
bf933b5ddb
|
@ -1,3 +1,7 @@
|
|||
2002-03-08 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/widgets/gimpbrushfactoryview.c: forgot some casts.
|
||||
|
||||
2002-03-08 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* libgimpwidgets/gimpwidgets.[ch]: return the crated label from
|
||||
|
|
|
@ -110,13 +110,14 @@ gimp_brush_factory_view_init (GimpBrushFactoryView *view)
|
|||
gtk_widget_show (table);
|
||||
|
||||
view->spacing_adjustment =
|
||||
gimp_scale_entry_new (GTK_TABLE (table), 0, 0,
|
||||
_("Spacing:"), -1, 50,
|
||||
0.0, 1.0, 1000.0, 1.0, 10.0, 1,
|
||||
TRUE, 0.0, 0.0,
|
||||
NULL, NULL);
|
||||
GTK_ADJUSTMENT (gimp_scale_entry_new (GTK_TABLE (table), 0, 0,
|
||||
_("Spacing:"), -1, 50,
|
||||
0.0, 1.0, 1000.0, 1.0, 10.0, 1,
|
||||
TRUE, 0.0, 0.0,
|
||||
NULL, NULL));
|
||||
|
||||
view->spacing_scale = GIMP_SCALE_ENTRY_SCALE (view->spacing_adjustment);
|
||||
view->spacing_scale =
|
||||
GTK_WIDGET (GIMP_SCALE_ENTRY_SCALE (view->spacing_adjustment));
|
||||
|
||||
g_signal_connect (G_OBJECT (view->spacing_adjustment), "value_changed",
|
||||
G_CALLBACK (gimp_brush_factory_view_spacing_update),
|
||||
|
|
Loading…
Reference in New Issue