diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-09-27 14:48:26 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-09-29 01:18:10 +0200 |
commit | 42f480a537da89eac587a5a67fbf64ab248cd931 (patch) | |
tree | 1985940b85f908957d2fe9acbf82a906c5376cb6 /gtk/gtkscalebutton.c | |
parent | 948768c708920fe25412d2a37729193fc36c9126 (diff) | |
download | gtk+-42f480a537da89eac587a5a67fbf64ab248cd931.tar.gz |
gtk_adjustment_new() should return a GtkAdjustment*
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=630731
Diffstat (limited to 'gtk/gtkscalebutton.c')
-rw-r--r-- | gtk/gtkscalebutton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkscalebutton.c b/gtk/gtkscalebutton.c index 60b8153a23..2de9de9e63 100644 --- a/gtk/gtkscalebutton.c +++ b/gtk/gtkscalebutton.c @@ -580,7 +580,7 @@ gtk_scale_button_new (GtkIconSize size, const gchar **icons) { GtkScaleButton *button; - GObject *adj; + GtkAdjustment *adj; adj = gtk_adjustment_new (min, min, max, step, 10 * step, 0); |