Add _gtk_spin_button_get_panel private function

It's needed in gtktestutils.c
This commit is contained in:
Javier Jardón
2010-07-13 00:11:39 +02:00
parent 57d870ac5b
commit cbbffa18f8
3 changed files with 18 additions and 4 deletions

View File

@ -2428,3 +2428,9 @@ gtk_spin_button_update (GtkSpinButton *spin_button)
else
gtk_spin_button_set_value (spin_button, val);
}
GdkWindow *
_gtk_spin_button_get_panel (GtkSpinButton *spin_button)
{
return spin_button->priv->panel;
}