Fix typo error 10/307110/1
authorEunki, Hong <eunkiki.hong@samsung.com>
Tue, 5 Mar 2024 03:51:04 +0000 (12:51 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Tue, 5 Mar 2024 03:51:04 +0000 (12:51 +0900)
Change-Id: I2b95863582ac00000d50b2491e4085bb09d7b5c0
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
dali/internal/event/common/object-impl.cpp

index d5cb12e..5200ac0 100644 (file)
@@ -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<AnimatablePropertyMetadata*>(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<AnimatablePropertyMetadata*>(mAnimatableProperties[mAnimatableProperties.Size() - 1]);