From: Seoyeon Kim Date: Wed, 2 Aug 2017 00:40:41 +0000 (+0900) Subject: [3.0] Fix SVACE issue X-Git-Tag: accepted/tizen/3.0/common/20170808.135312^0 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-core.git;a=commitdiff_plain;h=1470a093d1fbd4497461477074b21eb113f7cd4e [3.0] Fix SVACE issue - At linear-constrainer-impl.cpp:138, 'mValue.Size()' should change to 'mProgress.Size()'. Change-Id: I07799e08d0c5058dd09cd78f368be56b101c23cd Signed-off-by: Seoyeon Kim --- diff --git a/dali/internal/event/animation/linear-constrainer-impl.cpp b/dali/internal/event/animation/linear-constrainer-impl.cpp index 11ef59e..30bd953 100644 --- a/dali/internal/event/animation/linear-constrainer-impl.cpp +++ b/dali/internal/event/animation/linear-constrainer-impl.cpp @@ -135,7 +135,7 @@ Property::Value LinearConstrainer::GetDefaultProperty( Property::Index index ) c { Property::Value value( Property::ARRAY ); Property::Array* array = value.GetArray(); - size_t count( mValue.Size() ); + size_t count( mProgress.Size() ); if( array ) {