summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-08-18 05:17:25 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-08-18 05:17:25 (GMT)
commit0a74f871b21a9b7835fb1a5213bcac22ca1592cc (patch)
treeb95a8ff0a652e493346656b42e5ad74797c195e4 /examples
parentccd11ebe69f0f7088d2b1de2c372326a4f543827 (diff)
downloadQt-0a74f871b21a9b7835fb1a5213bcac22ca1592cc.zip
Qt-0a74f871b21a9b7835fb1a5213bcac22ca1592cc.tar.gz
Qt-0a74f871b21a9b7835fb1a5213bcac22ca1592cc.tar.bz2
Rename filter to targets.
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/flowview/flowview.qml4
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"}
}
}