diff options
author | Havoc Pennington <hp@pobox.com> | 2002-02-08 02:38:44 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2002-02-08 02:38:44 +0000 |
commit | b0c6f4f27b4ae5c4750ec241568aa280ed161f7e (patch) | |
tree | ebe69c659348bf2d9f1c3fbd3388ae7001ce2278 /gtk/gtkspinbutton.h | |
parent | 23c6be552cb881a30ee6c52b8ad9ea0897d92618 (diff) | |
download | gdk-pixbuf-b0c6f4f27b4ae5c4750ec241568aa280ed161f7e.tar.gz |
add change_value virtual function, to fix build
2002-02-07 Havoc Pennington <hp@pobox.com>
* gtk/gtkspinbutton.h (struct _GtkSpinButtonClass): add
change_value virtual function, to fix build
* gtk/gtkpixmap.c (gtk_pixmap_class_init): parent_class was
from GtkWidget not GtkMisc. Not that it ever mattered.
Diffstat (limited to 'gtk/gtkspinbutton.h')
-rw-r--r-- | gtk/gtkspinbutton.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk/gtkspinbutton.h b/gtk/gtkspinbutton.h index 04610cb45..0e2a104ba 100644 --- a/gtk/gtkspinbutton.h +++ b/gtk/gtkspinbutton.h @@ -107,6 +107,10 @@ struct _GtkSpinButtonClass gdouble *new_value); gint (*output) (GtkSpinButton *spin_button); void (*value_changed) (GtkSpinButton *spin_button); + + void (*change_value) (GtkSpinButton *spin, + GtkScrollType scroll); + }; |