Remove set-but-unused variables, to appease gcc 4.6

https://bugzilla.gnome.org/show_bug.cgi?id=640447
This commit is contained in:
Dan Winship
2011-01-24 12:41:23 -05:00
parent 75d1230dd1
commit 13edecde6c
14 changed files with 7 additions and 67 deletions

View File

@ -643,13 +643,11 @@ st_scroll_bar_constructor (GType type,
GObjectClass *gobject_class;
GObject *obj;
StScrollBar *bar;
StScrollBarPrivate *priv;
gobject_class = G_OBJECT_CLASS (st_scroll_bar_parent_class);
obj = gobject_class->constructor (type, n_properties, properties);
bar = ST_SCROLL_BAR (obj);
priv = ST_SCROLL_BAR_GET_PRIVATE (bar);
g_signal_connect (bar, "notify::reactive",
G_CALLBACK (bar_reactive_notify_cb), NULL);