diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-11-29 23:48:13 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-11-29 23:48:13 (GMT) |
commit | dc59b792119241988cdfe9f31d3aea55dcd5e8fe (patch) | |
tree | e21538afb904113b876975c3d89fa1d9e2fc02a1 /examples | |
parent | f9aa040505c5c679bed4181e462fb4d2b9216fa6 (diff) | |
download | Qt-dc59b792119241988cdfe9f31d3aea55dcd5e8fe.zip Qt-dc59b792119241988cdfe9f31d3aea55dcd5e8fe.tar.gz Qt-dc59b792119241988cdfe9f31d3aea55dcd5e8fe.tar.bz2 |
Fix tutorial3.
Task-number: QTBUG-6306
Diffstat (limited to 'examples')
-rw-r--r-- | examples/declarative/tutorials/helloworld/tutorial3.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/tutorials/helloworld/tutorial3.qml b/examples/declarative/tutorials/helloworld/tutorial3.qml index 52c3fe8..0f27f86 100644 --- a/examples/declarative/tutorials/helloworld/tutorial3.qml +++ b/examples/declarative/tutorials/helloworld/tutorial3.qml @@ -29,7 +29,7 @@ Rectangle { from: ""; to: "down"; reversible: true ParallelAnimation { NumberAnimation { matchProperties: "y,rotation"; duration: 500; easing: "easeInOutQuad" } - ColorAnimation { property: "color"; duration: 500 } + ColorAnimation { duration: 500 } } } //![3] |