Commit a81931fcb3716013f37d56a92685b8714d71f44b
Committed by
Gerrit Code Review
Merge "Added PropertyValue Array as a class" into tizen
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 | 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 | { | ... | ... |