actor: Reword the allocation cycle warning

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".
This commit is contained in:
Emmanuele Bassi 2010-02-01 12:18:10 +00:00
parent 5f1c8a17e4
commit ad6bd2ee88

View 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));
}