diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-03-02 02:08:54 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-03-02 02:08:54 (GMT) |
commit | b3c94b923200dd9c98b66f4233c62e63a3ee79d4 (patch) | |
tree | 4181b0f4e3feb993d9eeae16c0dd1ccf5daa5bc3 /tests/auto/declarative/qdeclarativeanimations/data/properties4.qml | |
parent | 8da93faace82eb2bc86e76c0ad0a0c5c95e3b8bf (diff) | |
parent | a9d327db7e77cc167172ad3199b6ffbc1c9da74f (diff) | |
download | Qt-b3c94b923200dd9c98b66f4233c62e63a3ee79d4.zip Qt-b3c94b923200dd9c98b66f4233c62e63a3ee79d4.tar.gz Qt-b3c94b923200dd9c98b66f4233c62e63a3ee79d4.tar.bz2 |
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7
Diffstat (limited to 'tests/auto/declarative/qdeclarativeanimations/data/properties4.qml')
-rw-r--r-- | tests/auto/declarative/qdeclarativeanimations/data/properties4.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/qdeclarativeanimations/data/properties4.qml b/tests/auto/declarative/qdeclarativeanimations/data/properties4.qml index dab7e5f..a90f004 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/properties4.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/properties4.qml @@ -9,6 +9,6 @@ Rectangle { color: "red" width: 50; height: 50 x: 100; y: 100 - x: NumberAnimation { target: theRect; property: "y"; to: 200; } + NumberAnimation on x { target: theRect; property: "y"; to: 200; } } } |