diff options
author | mae <qt-info@nokia.com> | 2010-07-08 15:49:23 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2010-07-19 10:17:43 (GMT) |
commit | 8ec06dbfdcbb43b6b02523247a6e88c61b4e0011 (patch) | |
tree | d8e5de67cb54223ce6c7ae6ed3a3e9a4586be6ac /tests/auto/declarative/qdeclarativespringanimation/data/springanimation3.qml | |
parent | 466a878c5df629759496ac68be1b4ce0527a78f0 (diff) | |
download | Qt-8ec06dbfdcbb43b6b02523247a6e88c61b4e0011.zip Qt-8ec06dbfdcbb43b6b02523247a6e88c61b4e0011.tar.gz Qt-8ec06dbfdcbb43b6b02523247a6e88c61b4e0011.tar.bz2 |
Follow -> Behavior
Replace the usages of Follows with Behaviors, update docs.
(cherry picked from commit b22a5e13003ff9f23b075284a1a1e0a6b0e46250)
Diffstat (limited to 'tests/auto/declarative/qdeclarativespringanimation/data/springanimation3.qml')
-rw-r--r-- | tests/auto/declarative/qdeclarativespringanimation/data/springanimation3.qml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativespringanimation/data/springanimation3.qml b/tests/auto/declarative/qdeclarativespringanimation/data/springanimation3.qml new file mode 100644 index 0000000..9f70bf4 --- /dev/null +++ b/tests/auto/declarative/qdeclarativespringanimation/data/springanimation3.qml @@ -0,0 +1,8 @@ +import Qt 4.7 + +SpringAnimation { + to: 1.44; velocity: 0.9 + spring: 1.0; damping: 0.5 + epsilon: 0.25; modulus: 360.0 + mass: 2.0; running: false +} |