From: Eunki, Hong Date: Tue, 5 Mar 2024 03:51:04 +0000 (+0900) Subject: Fix typo error X-Git-Tag: dali_2.3.14~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F10%2F307110%2F1;p=platform%2Fcore%2Fuifw%2Fdali-core.git Fix typo error Change-Id: I2b95863582ac00000d50b2491e4085bb09d7b5c0 Signed-off-by: Eunki, Hong --- diff --git a/dali/internal/event/common/object-impl.cpp b/dali/internal/event/common/object-impl.cpp index d5cb12e..5200ac0 100644 --- a/dali/internal/event/common/object-impl.cpp +++ b/dali/internal/event/common/object-impl.cpp @@ -1222,7 +1222,7 @@ AnimatablePropertyMetadata* Object::GetSceneAnimatableProperty(Property::Index i { // If the base property is not registered yet, register the base property first. RegisterAnimatableProperty(*typeInfo, basePropertyIndex, value); - DALI_ASSERT_ALWAYS(mAnimatableProperties.Size() > 0u && "Something wrong when we regiser animatable base property!"); + DALI_ASSERT_ALWAYS(mAnimatableProperties.Size() > 0u && "Something wrong when we register animatable base property!"); animatableProperty = static_cast(mAnimatableProperties[mAnimatableProperties.Size() - 1]); } @@ -1230,7 +1230,7 @@ AnimatablePropertyMetadata* Object::GetSceneAnimatableProperty(Property::Index i // Create the metadata for the property component. mAnimatableProperties.PushBack(new AnimatablePropertyMetadata(index, typeInfo->GetComponentIndex(index), animatableProperty->value, animatableProperty->GetSceneGraphProperty())); } - DALI_ASSERT_ALWAYS(mAnimatableProperties.Size() > 0u && "Something wrong when we regiser new animatable property!"); + DALI_ASSERT_ALWAYS(mAnimatableProperties.Size() > 0u && "Something wrong when we register new animatable property!"); // The metadata has just been added and therefore should be in the end of the vector. animatableProperty = static_cast(mAnimatableProperties[mAnimatableProperties.Size() - 1]);