Harmonize Animation API parameter checking and add test cases for them
[platform/core/uifw/dali-core.git] / dali / internal / event / animation / key-frames-impl.cpp
index a111c17..ac1bd93 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2018 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -82,7 +82,7 @@ void KeyFrames::CreateKeyFramesSpec(Property::Type type)
     }
     default:
     {
-      DALI_ABORT( "Type not animateable" );
+      DALI_ABORT( "Property type is not animatable" );
       break;
     }
   }
@@ -164,7 +164,7 @@ Property::Value KeyFrames::GetLastKeyFrameValue() const
 {
   Property::Value value;
 
-  unsigned int noOfKeyFrames = mKeyFrames->GetNumberOfKeyFrames();
+  std::size_t noOfKeyFrames = mKeyFrames->GetNumberOfKeyFrames();
   if( noOfKeyFrames )
   {
     mKeyFrames->GetKeyFrameAsValue( noOfKeyFrames - 1, value );