Commit 565f855af742d560379474a9189e902cfaa0315d
1 parent
ae3d2550
Added PropertyValue Array as a class
Change-Id: I440f386a091b41e4695d681ae56031eaa9b3710e
Showing
2 changed files
with
3 additions
and
3 deletions
examples/path-animation/path-animation.cpp
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 | { |