[clutter] actor: Fix the has_overridden_allocate check



commit f7bae2a064f4cdf17d854414d3a9acee690649b7
Author: Emmanuele Bassi <ebassi linux intel com>
Date:   Thu Jan 19 13:39:14 2012 +0000

    actor: Fix the has_overridden_allocate check

 clutter/clutter-actor.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/clutter/clutter-actor.c b/clutter/clutter-actor.c
index 307e97a..ab9edfb 100644
--- a/clutter/clutter-actor.c
+++ b/clutter/clutter-actor.c
@@ -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;
 }
 
 /**



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]