Commit a81931fcb3716013f37d56a92685b8714d71f44b

Authored by Kimmo Hoikka
Committed by Gerrit Code Review
2 parents 43da1f92 565f855a

Merge "Added PropertyValue Array as a class" into tizen

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