Further Setter/Getter public API removal from Dali::Actor
[platform/core/uifw/dali-core.git] / automated-tests / src / dali / utc-Dali-Layer.cpp
index 65abc00..f71b499 100644 (file)
@@ -264,9 +264,9 @@ int UtcDaliLayerSetSortFunction(void)
   // create two transparent actors so there is something to sort
   Actor actor = CreateRenderableActor( img );
   Actor actor2 = CreateRenderableActor( img );
-  actor.SetSize(1,1);
+  actor.SetProperty( Actor::Property::SIZE, Vector2( 1, 1 ) );
   actor.SetProperty( Actor::Property::COLOR, Vector4(1, 1, 1, 0.5f ) ); // 50% transparent
-  actor2.SetSize(1,1);
+  actor2.SetProperty( Actor::Property::SIZE, Vector2( 1, 1 ) );
   actor2.SetProperty( Actor::Property::COLOR, Vector4(1, 1, 1, 0.5f ) ); // 50% transparent
 
   // add to stage