[gimp/gtk3-port: 3/246] libgimpwidgets: s/GtkObject/GtkAdjustment/ in gimpwidgets.[ch]
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gtk3-port: 3/246] libgimpwidgets: s/GtkObject/GtkAdjustment/ in gimpwidgets.[ch]
- Date: Wed, 2 Mar 2011 09:21:43 +0000 (UTC)
commit ff73ec6f6b2e65026494d0c037bf8d5766407dd8
Author: Michael Natterer <mitch gimp org>
Date: Fri Oct 15 10:06:09 2010 +0200
libgimpwidgets: s/GtkObject/GtkAdjustment/ in gimpwidgets.[ch]
libgimpwidgets/gimpwidgets.c | 30 +++++++++++++++---------------
libgimpwidgets/gimpwidgets.h | 2 +-
2 files changed, 16 insertions(+), 16 deletions(-)
---
diff --git a/libgimpwidgets/gimpwidgets.c b/libgimpwidgets/gimpwidgets.c
index 6fea129..9fb46ec 100644
--- a/libgimpwidgets/gimpwidgets.c
+++ b/libgimpwidgets/gimpwidgets.c
@@ -437,15 +437,15 @@ gimp_int_radio_group_set_active (GtkRadioButton *radio_button,
* Returns: A #GtkSpinButton and its #GtkAdjustment.
**/
GtkWidget *
-gimp_spin_button_new (GtkObject **adjustment, /* return value */
- gdouble value,
- gdouble lower,
- gdouble upper,
- gdouble step_increment,
- gdouble page_increment,
- gdouble page_size,
- gdouble climb_rate,
- guint digits)
+gimp_spin_button_new (GtkAdjustment **adjustment, /* return value */
+ gdouble value,
+ gdouble lower,
+ gdouble upper,
+ gdouble step_increment,
+ gdouble page_increment,
+ gdouble page_size,
+ gdouble climb_rate,
+ guint digits)
{
GtkWidget *spinbutton;
@@ -493,11 +493,11 @@ GtkWidget *
gimp_random_seed_new (guint *seed,
gboolean *random_seed)
{
- GtkWidget *hbox;
- GtkWidget *toggle;
- GtkWidget *spinbutton;
- GtkObject *adj;
- GtkWidget *button;
+ GtkWidget *hbox;
+ GtkWidget *toggle;
+ GtkWidget *spinbutton;
+ GtkAdjustment *adj;
+ GtkWidget *button;
g_return_val_if_fail (seed != NULL, NULL);
g_return_val_if_fail (random_seed != NULL, NULL);
@@ -733,7 +733,7 @@ gimp_coordinates_new (GimpUnit unit,
gdouble ysize_100 /* % */)
{
GimpCoordinatesData *data;
- GtkObject *adjustment;
+ GtkAdjustment *adjustment;
GtkWidget *spinbutton;
GtkWidget *sizeentry;
GtkWidget *chainbutton;
diff --git a/libgimpwidgets/gimpwidgets.h b/libgimpwidgets/gimpwidgets.h
index 134049f..b27835e 100644
--- a/libgimpwidgets/gimpwidgets.h
+++ b/libgimpwidgets/gimpwidgets.h
@@ -136,7 +136,7 @@ void gimp_radio_group_set_active (GtkRadioButton *radio_button,
GtkWidget * gimp_spin_button_new (/* return value: */
- GtkObject **adjustment,
+ GtkAdjustment **adjustment,
gdouble value,
gdouble lower,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]