aboutsummaryrefslogtreecommitdiff
path: root/src/idoscalemenuitem.c
diff options
context:
space:
mode:
authorCody Russell <crussell@canonical.com>2010-08-03 14:47:05 -0500
committerCody Russell <crussell@canonical.com>2010-08-03 14:47:05 -0500
commitf3893ee568a61cb9f893502113826a29e601e807 (patch)
tree0d63ce638e6c2780f97c6a12756a9285bf2e6fc0 /src/idoscalemenuitem.c
parentb35ee3e7db326ae711af284a59faf31915e45b35 (diff)
downloadayatana-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.c2
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;