diff options
author | Kristian Rietveld <kris@gtk.org> | 2003-08-20 20:20:00 +0000 |
---|---|---|
committer | Kristian Rietveld <kristian@src.gnome.org> | 2003-08-20 20:20:00 +0000 |
commit | a36775060d8bc504d7e1f02587a393e571e7c208 (patch) | |
tree | 39c196b2bd8fdfdc422b0ba45397cfaf64cb4932 /gtk/gtkspinbutton.c | |
parent | d5cf3f17d9985e0d7bf28200d0ec2d9b59a95b34 (diff) | |
download | gtk+-a36775060d8bc504d7e1f02587a393e571e7c208.tar.gz |
Merged from stable.
Wed Aug 20 22:03:25 2003 Kristian Rietveld <kris@gtk.org>
Merged from stable.
* gtk/gtkspinbutton.c (start_spinning): change the type of step
to gdouble, since it gets it's data from a gdouble (Fixes #113547).
Diffstat (limited to 'gtk/gtkspinbutton.c')
-rw-r--r-- | gtk/gtkspinbutton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkspinbutton.c b/gtk/gtkspinbutton.c index 777a84f3ae..67de310d10 100644 --- a/gtk/gtkspinbutton.c +++ b/gtk/gtkspinbutton.c @@ -1026,7 +1026,7 @@ gtk_spin_button_stop_spinning (GtkSpinButton *spin) static void start_spinning (GtkSpinButton *spin, GtkArrowType click_child, - gfloat step) + gdouble step) { g_return_if_fail (click_child == GTK_ARROW_UP || click_child == GTK_ARROW_DOWN); |