[gimp/gtk3-port: 86/251] modules: s/GtkObject/GtkAdjustment/
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gtk3-port: 86/251] modules: s/GtkObject/GtkAdjustment/
- Date: Mon, 28 Mar 2011 19:29:59 +0000 (UTC)
commit 7379345283c6e3f4469e760786bd4e74d2f83bd0
Author: Michael Natterer <mitch gimp org>
Date: Wed Oct 20 12:17:06 2010 +0200
modules: s/GtkObject/GtkAdjustment/
modules/color-selector-cmyk-lcms.c | 27 ++++++++++++---------------
modules/color-selector-water.c | 12 ++++++------
2 files changed, 18 insertions(+), 21 deletions(-)
---
diff --git a/modules/color-selector-cmyk-lcms.c b/modules/color-selector-cmyk-lcms.c
index 0d5d20f..a748960 100644
--- a/modules/color-selector-cmyk-lcms.c
+++ b/modules/color-selector-cmyk-lcms.c
@@ -159,7 +159,6 @@ static void
colorsel_cmyk_init (ColorselCmyk *module)
{
GtkWidget *table;
- GtkObject *adj;
gint i;
static const gchar * const cmyk_labels[] =
@@ -198,22 +197,20 @@ colorsel_cmyk_init (ColorselCmyk *module)
for (i = 0; i < 4; i++)
{
- adj = gimp_scale_entry_new (GTK_TABLE (table), 1, i,
- gettext (cmyk_labels[i]),
- -1, -1,
- 0.0,
- 0.0, 100.0,
- 1.0, 10.0,
- 0,
- TRUE, 0.0, 0.0,
- gettext (cmyk_tips[i]),
- NULL);
-
- g_signal_connect (adj, "value-changed",
+ module->adj[i] = gimp_scale_entry_new (GTK_TABLE (table), 1, i,
+ gettext (cmyk_labels[i]),
+ -1, -1,
+ 0.0,
+ 0.0, 100.0,
+ 1.0, 10.0,
+ 0,
+ TRUE, 0.0, 0.0,
+ gettext (cmyk_tips[i]),
+ NULL);
+
+ g_signal_connect (module->adj[i], "value-changed",
G_CALLBACK (colorsel_cmyk_adj_update),
module);
-
- module->adj[i] = GTK_ADJUSTMENT (adj);
}
module->name_label = gtk_label_new (NULL);
diff --git a/modules/color-selector-water.c b/modules/color-selector-water.c
index b794673..becdcf7 100644
--- a/modules/color-selector-water.c
+++ b/modules/color-selector-water.c
@@ -127,11 +127,11 @@ colorsel_water_class_finalize (ColorselWaterClass *klass)
static void
colorsel_water_init (ColorselWater *water)
{
- GtkWidget *hbox;
- GtkWidget *area;
- GtkWidget *frame;
- GtkObject *adj;
- GtkWidget *scale;
+ GtkWidget *hbox;
+ GtkWidget *area;
+ GtkWidget *frame;
+ GtkAdjustment *adj;
+ GtkWidget *scale;
water->pressure_adjust = 1.0;
@@ -179,7 +179,7 @@ colorsel_water_init (ColorselWater *water)
G_CALLBACK (pressure_adjust_update),
water);
- scale = gtk_vscale_new (GTK_ADJUSTMENT (adj));
+ scale = gtk_vscale_new (adj);
gtk_scale_set_digits (GTK_SCALE (scale), 0);
gtk_scale_set_draw_value (GTK_SCALE (scale), FALSE);
gimp_help_set_help_data (scale, _("Pressure"), NULL);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]