diff options
author | Ted Gould <ted@gould.cx> | 2011-10-12 14:05:06 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-10-12 14:05:06 -0500 |
commit | 8a442cf1e0f414d3cecfa405719e01a4b8c57642 (patch) | |
tree | 94a01cf18306d7c267b84104d77ab300aee2141f /src/idoscalemenuitem.c | |
parent | 93b180bd9bf92d66cd2e9bd1a8b93c2f2c4f6bb3 (diff) | |
parent | 28c45e5ca4021a6e314e3d5303fc6b07ffd08b65 (diff) | |
download | ayatana-ido-8a442cf1e0f414d3cecfa405719e01a4b8c57642.tar.gz ayatana-ido-8a442cf1e0f414d3cecfa405719e01a4b8c57642.tar.bz2 ayatana-ido-8a442cf1e0f414d3cecfa405719e01a4b8c57642.zip |
Fixes for ARM
Diffstat (limited to 'src/idoscalemenuitem.c')
-rw-r--r-- | src/idoscalemenuitem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/idoscalemenuitem.c b/src/idoscalemenuitem.c index 8a55299..b7c93b7 100644 --- a/src/idoscalemenuitem.c +++ b/src/idoscalemenuitem.c @@ -225,7 +225,7 @@ ido_scale_menu_item_constructed (GObject *object) { IdoScaleMenuItem *self = IDO_SCALE_MENU_ITEM (object); IdoScaleMenuItemPrivate *priv = GET_PRIVATE (self); - GtkAdjustment *adj = GTK_ADJUSTMENT (gtk_adjustment_new (0.0, 0.0, 100.0, 1.0, 10.0, 0.0)); + GObject *adj = G_OBJECT (gtk_adjustment_new (0.0, 0.0, 100.0, 1.0, 10.0, 0.0)); IdoRangeStyle range_style; GtkWidget *hbox; @@ -745,7 +745,7 @@ ido_scale_menu_item_new_with_range (const gchar *label, gdouble max, gdouble step) { - GtkAdjustment *adjustment = GTK_ADJUSTMENT (gtk_adjustment_new (value, min, max, step, 10 * step, 0)); + GObject *adjustment = G_OBJECT (gtk_adjustment_new (value, min, max, step, 10 * step, 0)); return GTK_WIDGET (g_object_new (IDO_TYPE_SCALE_MENU_ITEM, "label", label, |