diff options
author | Cody Russell <crussell@canonical.com> | 2010-08-03 14:47:05 -0500 |
---|---|---|
committer | Cody Russell <crussell@canonical.com> | 2010-08-03 14:47:05 -0500 |
commit | f3893ee568a61cb9f893502113826a29e601e807 (patch) | |
tree | 0d63ce638e6c2780f97c6a12756a9285bf2e6fc0 /src/idoscalemenuitem.c | |
parent | b35ee3e7db326ae711af284a59faf31915e45b35 (diff) | |
download | ayatana-ido-f3893ee568a61cb9f893502113826a29e601e807.tar.gz ayatana-ido-f3893ee568a61cb9f893502113826a29e601e807.tar.bz2 ayatana-ido-f3893ee568a61cb9f893502113826a29e601e807.zip |
Fix for armel build. Patch by David Sugar.
Diffstat (limited to 'src/idoscalemenuitem.c')
-rw-r--r-- | src/idoscalemenuitem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/idoscalemenuitem.c b/src/idoscalemenuitem.c index 4ec4baa..f29c2dc 100644 --- a/src/idoscalemenuitem.c +++ b/src/idoscalemenuitem.c @@ -202,7 +202,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)); + GtkObject *adj = gtk_adjustment_new (0.0, 0.0, 100.0, 1.0, 10.0, 0.0); IdoRangeStyle range_style; GtkWidget *hbox; |