summaryrefslogtreecommitdiff
path: root/examples/declarative/listview/recipes.qml
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2010-02-16 11:59:27 +1000
committerMichael Brasser <michael.brasser@nokia.com>2010-02-18 15:17:13 +1000
commitad2b2c698d90d04aebe1f6d05c3a4eb992c0e7b6 (patch)
tree144a7a8f3208d9388b8666d26aa0a231b325b87f /examples/declarative/listview/recipes.qml
parent635b329592f26d64eeb6212b6056249b15293dcf (diff)
downloadqt4-tools-ad2b2c698d90d04aebe1f6d05c3a4eb992c0e7b6.tar.gz
Get rid of the matchProperties/properties distinction, as it
has proven to be confusing in practice. property/target and properties/targets will be functionally equivilant (the only distinction being singular/plural). In a transition these properties can be used for both 'matching' and explicit animation based on whether a 'to' value is supplied. The documentation, tests, examples and demos have been updated as well.
Diffstat (limited to 'examples/declarative/listview/recipes.qml')
-rw-r--r--examples/declarative/listview/recipes.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/listview/recipes.qml b/examples/declarative/listview/recipes.qml
index c133351c79..3410f5619e 100644
--- a/examples/declarative/listview/recipes.qml
+++ b/examples/declarative/listview/recipes.qml
@@ -124,7 +124,7 @@ Rectangle {
ParallelAnimation {
ColorAnimation { property: "color"; duration: 500 }
NumberAnimation {
- duration: 300; matchProperties: "detailsOpacity,x,viewportY,height,width"
+ duration: 300; properties: "detailsOpacity,x,viewportY,height,width"
}
}
}