From 155f63fcebca3a4df60d00fbf6ebabcdd175fc32 Mon Sep 17 00:00:00 2001 From: "Eunki, Hong" Date: Tue, 5 Mar 2024 12:51:04 +0900 Subject: [PATCH] Fix typo error Change-Id: I2b95863582ac00000d50b2491e4085bb09d7b5c0 Signed-off-by: Eunki, Hong --- dali/internal/event/common/object-impl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]); -- 2.7.4