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.
This commit is contained in:
Havoc Pennington
2002-02-08 02:38:44 +00:00
committed by Havoc Pennington
parent 23c6be552c
commit b0c6f4f27b
12 changed files with 77 additions and 5 deletions

View File

@ -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);
};