From 2020c692803a8a7839d85860d05174a193d9a848 Mon Sep 17 00:00:00 2001 From: Erik Verbruggen Date: Tue, 23 Jun 2009 10:16:18 +0200 Subject: Changed SetProperty to SetProperties to anticipate deprecation of SetProperty. --- examples/declarative/tutorials/helloworld/t3/tutorial3.qml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/examples/declarative/tutorials/helloworld/t3/tutorial3.qml b/examples/declarative/tutorials/helloworld/t3/tutorial3.qml index bd89ecf..127d99e 100644 --- a/examples/declarative/tutorials/helloworld/t3/tutorial3.qml +++ b/examples/declarative/tutorials/helloworld/t3/tutorial3.qml @@ -14,15 +14,10 @@ Rect { State { name: "down" when: MouseRegion.pressed == true - SetProperty { + SetProperties { target: HelloText - property: "y" - value: 160 - } - SetProperty { - target: HelloText - property: "color" - value: "red" + y: 160 + color: "red" } } ] -- cgit v0.12