diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-06-26 02:28:34 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-06-26 02:28:34 (GMT) |
commit | afa4e61b10187102d3ea49d1c11bae1ef919d94d (patch) | |
tree | 7890eb2f3194de2b9a2ca7ed6fd0227f7b92fa36 /examples/declarative/tutorials | |
parent | ffc9e62cbf7e24cd04a1202de1b3e618f9e12642 (diff) | |
parent | 5b52c348243e6459cc7faa4ee76a23c7fadcd299 (diff) | |
download | Qt-afa4e61b10187102d3ea49d1c11bae1ef919d94d.zip Qt-afa4e61b10187102d3ea49d1c11bae1ef919d94d.tar.gz Qt-afa4e61b10187102d3ea49d1c11bae1ef919d94d.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'examples/declarative/tutorials')
-rw-r--r-- | examples/declarative/tutorials/helloworld/t3/tutorial3.qml | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/examples/declarative/tutorials/helloworld/t3/tutorial3.qml b/examples/declarative/tutorials/helloworld/t3/tutorial3.qml index 5ea0dd6..f4bce32 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" } } ] |