Fix compilation warning

Declare the width and height variables as unsigned ints, in order
to match the required arguments for clutter_actor_get_size().
This commit is contained in:
Emmanuele Bassi 2009-01-14 14:34:35 +00:00
parent ffc15e0962
commit c83d955af3

View File

@ -26,7 +26,7 @@ raise_top (gpointer ignored)
static ClutterActor *
clone_box (ClutterTexture *original)
{
gint width, height;
guint width, height;
ClutterActor *group;
ClutterActor *clone;