Added PropertyValue Array as a class 04/39404/3
authorLee Morgan <Lee.morgan@partner.samsung.com>
Tue, 12 May 2015 14:55:23 +0000 (15:55 +0100)
committerLee Morgan <Lee.morgan@partner.samsung.com>
Thu, 14 May 2015 12:51:46 +0000 (13:51 +0100)
Change-Id: I440f386a091b41e4695d681ae56031eaa9b3710e

examples/path-animation/path-animation.cpp
examples/scroll-view/scroll-view-example.cpp

index 06b3cf0..939eeee 100644 (file)
@@ -79,7 +79,7 @@ public:
     float mark = -1.0f;
     for(unsigned short i(0); i<21; ++i )
     {
-      marks.push_back( mark );
+      marks.PushBack( mark );
       mark += 0.1f;
     }
 
index 7f9ceea..dbf2a0a 100644 (file)
@@ -384,9 +384,9 @@ private:
       {
         Dali::Path path = Dali::Path::New();
         Dali::Property::Array points;
-        points.resize(3);
+        points.Resize(3);
         Dali::Property::Array controlPoints;
-        controlPoints.resize(4);
+        controlPoints.Resize(4);
         Vector3 forward;
         if( mEffectMode == PageCarouselEffect)
         {