diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2009-06-26 01:16:57 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2009-06-26 02:04:36 (GMT) |
commit | ffc9e62cbf7e24cd04a1202de1b3e618f9e12642 (patch) | |
tree | faf828900c05b748e39158eb6a1fb59c44ba3763 /examples/declarative/behaviours | |
parent | 662488175fb9c6a44e9641867177b5396c507891 (diff) | |
download | Qt-ffc9e62cbf7e24cd04a1202de1b3e618f9e12642.zip Qt-ffc9e62cbf7e24cd04a1202de1b3e618f9e12642.tar.gz Qt-ffc9e62cbf7e24cd04a1202de1b3e618f9e12642.tar.bz2 |
Rename NumericAnimation -> NumberAnimation
Diffstat (limited to 'examples/declarative/behaviours')
-rw-r--r-- | examples/declarative/behaviours/test.qml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/declarative/behaviours/test.qml b/examples/declarative/behaviours/test.qml index e6a50cd..4c092bf 100644 --- a/examples/declarative/behaviours/test.qml +++ b/examples/declarative/behaviours/test.qml @@ -56,7 +56,7 @@ Rect { id: bluerect x: Behavior { SequentialAnimation { - NumericAnimation { + NumberAnimation { target: bluerect properties: "y" from: 0 @@ -64,7 +64,7 @@ Rect { easing: "easeOutBounce(amplitude:30)" duration: 250 } - NumericAnimation { + NumberAnimation { target: bluerect properties: "y" from: 10 @@ -73,18 +73,18 @@ Rect { duration: 250 } } - NumericAnimation { duration: 500 } + NumberAnimation { duration: 500 } } parent: Behavior { SequentialAnimation { - NumericAnimation { + NumberAnimation { target: bluerect properties: "opacity" to: 0 duration: 150 } SetPropertyAction {} - NumericAnimation { + NumberAnimation { target: bluerect properties: "opacity" to: 1 |