X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-scene3d%2Fpublic-api%2Floader%2Fanimated-property.h;h=07b251f9ad706e62c4c86a470a3a156bff2df9bb;hb=469fdeab34b1f319e0d9a73a799f1a48732a0410;hp=90b8a023c637e60494e9c49e5d7814555299dc48;hpb=850ba75b1ce1c35fed34396e84ee4bfe7ed0ade1;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-scene3d/public-api/loader/animated-property.h b/dali-scene3d/public-api/loader/animated-property.h index 90b8a02..07b251f 100644 --- a/dali-scene3d/public-api/loader/animated-property.h +++ b/dali-scene3d/public-api/loader/animated-property.h @@ -49,7 +49,7 @@ public: // METHODS /** * @return The Property object (of the given @a actor) whose value is being animated. */ - Property GetProperty(Actor& actor) const + Property GetProperty(Actor& actor) { auto idx = actor.GetPropertyIndex(mPropertyName); return Property(actor, idx); @@ -58,7 +58,7 @@ public: // METHODS /** * @brief The type of the Property (of the given @a actor) that is being animated. */ - Property::Type GetPropertyType(Actor& actor) const + Property::Type GetPropertyType(Actor& actor) { auto idx = actor.GetPropertyIndex(mPropertyName); return actor.GetPropertyType(idx); @@ -70,7 +70,7 @@ public: // METHODS * Failing to find the actor purely means that this property will not be * animated. */ - void Animate(Animation& anim, GetActor getActor) const; + void Animate(Animation& anim, GetActor getActor); public: // DATA struct Value