actor: Fix the has_overridden_allocate check

This commit is contained in:
Emmanuele Bassi 2012-01-19 13:39:14 +00:00
parent acf8aff6d5
commit f7bae2a064

View File

@ -6109,7 +6109,7 @@ clutter_actor_init (ClutterActor *self)
self);
priv->has_overridden_allocate =
CLUTTER_ACTOR_GET_CLASS (self)->allocate == clutter_actor_real_allocate;
CLUTTER_ACTOR_GET_CLASS (self)->allocate != clutter_actor_real_allocate;
}
/**