Stop using macros for accessing actor state

Use the newly added functions instead.
This commit is contained in:
Emmanuele Bassi
2015-04-23 17:39:30 +01:00
parent 4c6a550d13
commit dac33c5fea
8 changed files with 30 additions and 30 deletions

View File

@ -307,7 +307,7 @@ on_actor_mapped (ClutterActor *actor,
GParamSpec *pspec,
ClutterDropAction *self)
{
if (CLUTTER_ACTOR_IS_MAPPED (actor))
if (clutter_actor_is_mapped (actor))
{
if (self->priv->stage == NULL)
self->priv->stage = clutter_actor_get_stage (actor);