[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.
This commit is contained in:
Emmanuele Bassi 2009-03-16 12:17:03 +00:00
parent 961aac3fb3
commit ff62040252

View File

@ -8,7 +8,6 @@ static void size_change_cb (ClutterTexture *texture,
gint height, gint height,
gpointer user_data) gpointer user_data)
{ {
guint w,h;
clutter_actor_set_size (user_data, width, height); clutter_actor_set_size (user_data, width, height);
} }