Commit 565f855af742d560379474a9189e902cfaa0315d

Authored by Lee Morgan
1 parent ae3d2550

Added PropertyValue Array as a class

Change-Id: I440f386a091b41e4695d681ae56031eaa9b3710e
examples/path-animation/path-animation.cpp
@@ -79,7 +79,7 @@ public: @@ -79,7 +79,7 @@ public:
79 float mark = -1.0f; 79 float mark = -1.0f;
80 for(unsigned short i(0); i<21; ++i ) 80 for(unsigned short i(0); i<21; ++i )
81 { 81 {
82 - marks.push_back( mark ); 82 + marks.PushBack( mark );
83 mark += 0.1f; 83 mark += 0.1f;
84 } 84 }
85 85
examples/scroll-view/scroll-view-example.cpp
@@ -384,9 +384,9 @@ private: @@ -384,9 +384,9 @@ private:
384 { 384 {
385 Dali::Path path = Dali::Path::New(); 385 Dali::Path path = Dali::Path::New();
386 Dali::Property::Array points; 386 Dali::Property::Array points;
387 - points.resize(3); 387 + points.Resize(3);
388 Dali::Property::Array controlPoints; 388 Dali::Property::Array controlPoints;
389 - controlPoints.resize(4); 389 + controlPoints.Resize(4);
390 Vector3 forward; 390 Vector3 forward;
391 if( mEffectMode == PageCarouselEffect) 391 if( mEffectMode == PageCarouselEffect)
392 { 392 {