actor: Reword the allocation cycle warning
authorEmmanuele Bassi <ebassi@linux.intel.com>
Mon, 1 Feb 2010 12:18:10 +0000 (12:18 +0000)
committerEmmanuele Bassi <ebassi@linux.intel.com>
Mon, 1 Feb 2010 12:18:10 +0000 (12:18 +0000)
Since we're allowing allocation cycles saying that calling
queue_relayout() inside an allocation cycle "is not allowed" is kind of
confusing. We should say that "it is not recommended".

clutter/clutter-actor.c

index 2419ab5..31570c0 100644 (file)
@@ -4582,7 +4582,7 @@ clutter_actor_queue_relayout (ClutterActor *self)
     {
       g_warning ("The actor '%s' is currently inside an allocation "
                  "cycle; calling clutter_actor_queue_relayout() is "
-                 "not allowed",
+                 "not recommended",
                  priv->name ? priv->name
                             : G_OBJECT_TYPE_NAME (self));
     }