diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2009-08-19 00:05:55 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2009-08-19 00:05:55 (GMT) |
commit | 0e1d095a281e204d31217f1e5af6f3a796a89169 (patch) | |
tree | dc78b84ad1dd8bc1688a93f1b6e2a01466ebc475 /examples | |
parent | 0a6386075faee6c1438b3ca871c0658269ff6afd (diff) | |
parent | 42291f03e1a6083dd3459224226a90717299f26e (diff) | |
download | Qt-0e1d095a281e204d31217f1e5af6f3a796a89169.zip Qt-0e1d095a281e204d31217f1e5af6f3a796a89169.tar.gz Qt-0e1d095a281e204d31217f1e5af6f3a796a89169.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'examples')
-rw-r--r-- | examples/declarative/flowview/flowview.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/flowview/flowview.qml b/examples/declarative/flowview/flowview.qml index a3d0ac5..8d1bdf6 100644 --- a/examples/declarative/flowview/flowview.qml +++ b/examples/declarative/flowview/flowview.qml @@ -25,8 +25,8 @@ Rect { fromState: "" ; toState: "rotated" reversible: true SequentialAnimation { - NumberAnimation { filter: [TopBar, BottomBar]; properties: "x,y"; easing: "easeInOutQuad" } - NumberAnimation { filter: [LeftBar, RightBar]; properties: "x,y"; easing: "easeInOutQuad"} + NumberAnimation { targets: [TopBar, BottomBar]; properties: "x,y"; easing: "easeInOutQuad" } + NumberAnimation { targets: [LeftBar, RightBar]; properties: "x,y"; easing: "easeInOutQuad"} } } |