X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Futc-Dali-BubbleEmitter.cpp;h=1b15e74f7fc4d3fe9de0e8e23e9bacc452fc1ddc;hb=fca202af829a0657805e44461f08f284cdbf0bbb;hp=e8f0d98668357d28a03a20c03b31f370ed7a8423;hpb=7845c204ad99f3452a0afb3b2893b941eeb9feb9;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/automated-tests/src/dali-toolkit/utc-Dali-BubbleEmitter.cpp b/automated-tests/src/dali-toolkit/utc-Dali-BubbleEmitter.cpp index e8f0d98..1b15e74 100644 --- a/automated-tests/src/dali-toolkit/utc-Dali-BubbleEmitter.cpp +++ b/automated-tests/src/dali-toolkit/utc-Dali-BubbleEmitter.cpp @@ -198,9 +198,9 @@ int UtcDaliBubbleEmitterSetBubbleScale(void) DALI_TEST_CHECK(emitter); Actor root = emitter.GetRootActor(); Stage::GetCurrent().Add( root ); - root.SetPosition( Vector3::ZERO ); - root.SetParentOrigin( ParentOrigin::CENTER ); - root.SetAnchorPoint( AnchorPoint::CENTER ); + root.SetProperty( Actor::Property::POSITION, Vector3::ZERO ); + root.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER ); + root.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::CENTER ); TestGlAbstraction& gl = application.GetGlAbstraction(); @@ -321,9 +321,9 @@ int UtcDaliBubbleEmitterRestore(void) BubbleEmitter emitter = BubbleEmitter::New( movementArea,shapeImage, 90, Vector2( 5.f, 10.f )); Actor root = emitter.GetRootActor(); Stage::GetCurrent().Add( root ); - root.SetPosition( Vector3::ZERO ); - root.SetParentOrigin( ParentOrigin::CENTER ); - root.SetAnchorPoint( AnchorPoint::CENTER ); + root.SetProperty( Actor::Property::POSITION, Vector3::ZERO ); + root.SetProperty( Actor::Property::PARENT_ORIGIN, ParentOrigin::CENTER ); + root.SetProperty( Actor::Property::ANCHOR_POINT, AnchorPoint::CENTER ); Renderer renderer = root.GetRendererAt( 0 ); DALI_TEST_CHECK( renderer );