From ff620402523a0dd33ae01d13f7490dc8e63caf3c Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 16 Mar 2009 12:17:03 +0000 Subject: [PATCH] [tests] Remove unused variables The size of the pixmap is passed by the ::size-changed signal, so we can remove the unused w, h variables and avoid a compiler warning. --- tests/interactive/test-texture-async.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/interactive/test-texture-async.c b/tests/interactive/test-texture-async.c index 5c1b8064d..c80171ce6 100644 --- a/tests/interactive/test-texture-async.c +++ b/tests/interactive/test-texture-async.c @@ -8,7 +8,6 @@ static void size_change_cb (ClutterTexture *texture, gint height, gpointer user_data) { - guint w,h; clutter_actor_set_size (user_data, width, height); }