summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-08-21 00:07:17 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-08-21 00:07:17 (GMT)
commitaf15183ca230cb96ef9e2901e3fbb716eb4300bb (patch)
treec84d4bed8a1acba57c898446259f4028f9dd4e72 /demos
parentf738eab2d811e7d2ef274c3b7819c1231669e8b8 (diff)
downloadQt-af15183ca230cb96ef9e2901e3fbb716eb4300bb.zip
Qt-af15183ca230cb96ef9e2901e3fbb716eb4300bb.tar.gz
Qt-af15183ca230cb96ef9e2901e3fbb716eb4300bb.tar.bz2
Renaming: Bind -> Binding
Diffstat (limited to 'demos')
-rw-r--r--demos/declarative/contacts/contacts.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/demos/declarative/contacts/contacts.qml b/demos/declarative/contacts/contacts.qml
index 8410ac1..0082ecf 100644
--- a/demos/declarative/contacts/contacts.qml
+++ b/demos/declarative/contacts/contacts.qml
@@ -71,22 +71,22 @@ Rectangle {
id: Details
anchors.fill: wrapper
opacity: 0
- Bind {
+ Binding {
target: Details.item
property: "contactId"
value: model.recid
}
- Bind {
+ Binding {
target: Details.item
property: "label"
value: model.label
}
- Bind {
+ Binding {
target: Details.item
property: "phone"
value: model.phone
}
- Bind {
+ Binding {
target: Details.item
property: "email"
value: model.email