diff options
author | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-10 17:47:00 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@gmail.com> | 2012-10-10 17:47:00 +0200 |
commit | 195ccad179d96766165b1dc846dbe066fffc43ac (patch) | |
tree | cd5de057a2a14d1aeefb501f9882908efcc04b09 /tools | |
parent | 95a22bf2f02ad11c2602df5ac5ffd04fee93588c (diff) | |
download | libuca-195ccad179d96766165b1dc846dbe066fffc43ac.tar.gz libuca-195ccad179d96766165b1dc846dbe066fffc43ac.tar.bz2 libuca-195ccad179d96766165b1dc846dbe066fffc43ac.tar.xz libuca-195ccad179d96766165b1dc846dbe066fffc43ac.zip |
Disable unused variables
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gui/egg-histogram-view.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/gui/egg-histogram-view.c b/tools/gui/egg-histogram-view.c index d3cb18b..7abc2be 100644 --- a/tools/gui/egg-histogram-view.c +++ b/tools/gui/egg-histogram-view.c @@ -305,11 +305,11 @@ egg_histogram_view_button_release (GtkWidget *widget, { EggHistogramView *view; EggHistogramViewPrivate *priv; - GtkAllocation allocation; - gint width; + /* GtkAllocation allocation; */ + /* gint width; */ - gtk_widget_get_allocation (widget, &allocation); - width = allocation.width - 2 * BORDER; + /* gtk_widget_get_allocation (widget, &allocation); */ + /* width = allocation.width - 2 * BORDER; */ view = EGG_HISTOGRAM_VIEW (widget); priv = view->priv; |