[gimp/gtk3-port: 91/227] app: s/GtkObject/GtkAdjustment/ in the new spin scale prop widgets
- From: Clayton Walker <claytonw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gtk3-port: 91/227] app: s/GtkObject/GtkAdjustment/ in the new spin scale prop widgets
- Date: Mon, 21 Oct 2013 21:26:03 +0000 (UTC)
commit 1b42528156015caffc34575c19ae840121326397
Author: Michael Natterer <mitch gimp org>
Date: Tue Nov 2 18:59:26 2010 +0100
app: s/GtkObject/GtkAdjustment/ in the new spin scale prop widgets
app/widgets/gimppropwidgets.c | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/app/widgets/gimppropwidgets.c b/app/widgets/gimppropwidgets.c
index ad72d17..84d5af2 100644
--- a/app/widgets/gimppropwidgets.c
+++ b/app/widgets/gimppropwidgets.c
@@ -476,12 +476,12 @@ gimp_prop_spin_scale_new (GObject *config,
gdouble page_increment,
gint digits)
{
- GParamSpec *param_spec;
- GtkObject *adjustment;
- GtkWidget *scale;
- gdouble value;
- gdouble lower;
- gdouble upper;
+ GParamSpec *param_spec;
+ GtkAdjustment *adjustment;
+ GtkWidget *scale;
+ gdouble value;
+ gdouble lower;
+ gdouble upper;
param_spec = find_param_spec (config, property_name, G_STRFUNC);
if (! param_spec)
@@ -498,7 +498,7 @@ gimp_prop_spin_scale_new (GObject *config,
adjustment = gtk_adjustment_new (value, lower, upper,
step_increment, page_increment, 0.0);
- scale = gimp_spin_scale_new (GTK_ADJUSTMENT (adjustment), label, digits);
+ scale = gimp_spin_scale_new (adjustment, label, digits);
set_param_spec (G_OBJECT (adjustment), scale, param_spec);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]