Fix SVACE issue 62/141862/1
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 2 Aug 2017 00:40:41 +0000 (09:40 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 2 Aug 2017 00:49:10 +0000 (09:49 +0900)
- At linear-constrainer-impl.cpp:138, 'mValue.Size()' should change to 'mProgress.Size()'.

Change-Id: I07799e08d0c5058dd09cd78f368be56b101c23cd
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
dali/internal/event/animation/linear-constrainer-impl.cpp

index 41f2357..41f6248 100644 (file)
@@ -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 )
     {