libgimpwidgets: s/GtkObject/GtkAdjustment/ in gimpwidgets.[ch]

This commit is contained in:
Michael Natterer 2010-10-15 10:06:09 +02:00
parent dae87ee1c7
commit a562a0c798
2 changed files with 10 additions and 10 deletions

View File

@ -435,15 +435,15 @@ gimp_int_radio_group_set_active (GtkRadioButton *radio_button,
* Returns: A #GtkSpinButton and its #GtkAdjustment. * Returns: A #GtkSpinButton and its #GtkAdjustment.
**/ **/
GtkWidget * GtkWidget *
gimp_spin_button_new (GtkObject **adjustment, /* return value */ gimp_spin_button_new (GtkAdjustment **adjustment, /* return value */
gdouble value, gdouble value,
gdouble lower, gdouble lower,
gdouble upper, gdouble upper,
gdouble step_increment, gdouble step_increment,
gdouble page_increment, gdouble page_increment,
gdouble page_size, gdouble page_size,
gdouble climb_rate, gdouble climb_rate,
guint digits) guint digits)
{ {
GtkWidget *spinbutton; GtkWidget *spinbutton;

View File

@ -143,7 +143,7 @@ void gimp_radio_group_set_active (GtkRadioButton *radio_button,
GIMP_DEPRECATED_FOR(gtk_spin_button_new) GIMP_DEPRECATED_FOR(gtk_spin_button_new)
GtkWidget * gimp_spin_button_new (/* return value: */ GtkWidget * gimp_spin_button_new (/* return value: */
GtkObject **adjustment, GtkAdjustment **adjustment,
gdouble value, gdouble value,
gdouble lower, gdouble lower,