X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fevent%2Fanimation%2Fkey-frames-impl.cpp;h=ac1bd939ea772cd749ad4e6d99bdc25ff6e1b031;hb=41e9a0ad46f71f270f69e75a08098f5105275cd3;hp=a111c17d2acf71a9bad3923f92951c54ecda7b70;hpb=a7e2c4cea2d831cbd5538e34b7a2227a9dc12d58;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/internal/event/animation/key-frames-impl.cpp b/dali/internal/event/animation/key-frames-impl.cpp index a111c17..ac1bd93 100644 --- a/dali/internal/event/animation/key-frames-impl.cpp +++ b/dali/internal/event/animation/key-frames-impl.cpp @@ -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 );