diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2010-03-08 10:34:50 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2010-03-08 10:34:50 (GMT) |
commit | 76615ac642ffbe2730321623c5f298bde6109b11 (patch) | |
tree | cdbb8b61236e17d77f25ed22f9906faf0aa5e15b /tests/auto/declarative/qdeclarativeanimations | |
parent | 9b06c2dd119f3c4442f7b26756728bb9c7fefb4a (diff) | |
download | Qt-76615ac642ffbe2730321623c5f298bde6109b11.zip Qt-76615ac642ffbe2730321623c5f298bde6109b11.tar.gz Qt-76615ac642ffbe2730321623c5f298bde6109b11.tar.bz2 |
Fix failing autotest.
This was probably a bug in the test data.
Diffstat (limited to 'tests/auto/declarative/qdeclarativeanimations')
-rw-r--r-- | tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml b/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml index 3f00e68..408ad87 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/dontAutoStart.qml @@ -10,7 +10,7 @@ Rectangle { width: 100; height: 100 color: Qt.rgba(1,0,0) Behavior on x { - NumberAnimation { objectName: "MyAnim"; target: redRect; property: "y"; to: 300; repeat: true} + NumberAnimation { id: myAnim; objectName: "MyAnim"; target: redRect; property: "y"; to: 300; repeat: true} } } |