meta-window-group: Fix types typo

gboolean is a typedef for int, so it doesn't matter too much

https://bugzilla.gnome.org/show_bug.cgi?id=660941
This commit is contained in:
Jasper St. Pierre 2011-11-09 15:12:11 -05:00
parent 441287dc64
commit 1596d1af10

View File

@ -186,7 +186,7 @@ meta_window_group_paint (ClutterActor *actor)
if (META_IS_WINDOW_ACTOR (l->data)) if (META_IS_WINDOW_ACTOR (l->data))
{ {
MetaWindowActor *window_actor = l->data; MetaWindowActor *window_actor = l->data;
gboolean x, y; int x, y;
if (!actor_is_untransformed (CLUTTER_ACTOR (window_actor), &x, &y)) if (!actor_is_untransformed (CLUTTER_ACTOR (window_actor), &x, &y))
continue; continue;