diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2011-04-15 06:29:11 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2011-04-15 06:29:11 (GMT) |
commit | 7bc3dfc5214c6a31259d366be8e20c48195b0a50 (patch) | |
tree | 34bc092e64cf069fb745eaa936afcff19ec2ca9a | |
parent | b4b85257ccff6ba21bcbcbd46a9f7f09884abe79 (diff) | |
download | Qt-7bc3dfc5214c6a31259d366be8e20c48195b0a50.zip Qt-7bc3dfc5214c6a31259d366be8e20c48195b0a50.tar.gz Qt-7bc3dfc5214c6a31259d366be8e20c48195b0a50.tar.bz2 |
Fixed autotest after b4b85257ccff6ba21bcbcbd46a9f7f09884abe79
Change-Id: I7371d5c2f76254e6746d5a86874a045fc6aec32d
-rw-r--r-- | tests/auto/declarative/qdeclarativeanimations/data/attached.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/qdeclarativeanimations/data/attached.qml b/tests/auto/declarative/qdeclarativeanimations/data/attached.qml index 5da4a69..c5d5535 100644 --- a/tests/auto/declarative/qdeclarativeanimations/data/attached.qml +++ b/tests/auto/declarative/qdeclarativeanimations/data/attached.qml @@ -17,7 +17,7 @@ Rectangle { transitions: Transition { PropertyAction { target: wrapper; property: "ListView.delayRemove"; value: true } - ScriptAction { script: console.log(ListView.delayRemove ? "on" : "off") } + ScriptAction { script: console.log(wrapper.ListView.delayRemove ? "on" : "off") } } Component.onCompleted: { |