From: Seoyeon Kim Date: Wed, 2 Aug 2017 00:40:41 +0000 (+0900) Subject: Fix SVACE issue X-Git-Tag: dali_1.2.52~3 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-core.git;a=commitdiff_plain;h=ae9aa6c8f6feaa85138ef7ca5a13b280923989a2 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 41f2357..41f6248 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 ) {