summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials
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 /examples/declarative/tutorials
parentf738eab2d811e7d2ef274c3b7819c1231669e8b8 (diff)
downloadQt-af15183ca230cb96ef9e2901e3fbb716eb4300bb.zip
Qt-af15183ca230cb96ef9e2901e3fbb716eb4300bb.tar.gz
Qt-af15183ca230cb96ef9e2901e3fbb716eb4300bb.tar.bz2
Renaming: Bind -> Binding
Diffstat (limited to 'examples/declarative/tutorials')
-rw-r--r--examples/declarative/tutorials/contacts/3_Collections/3/ContactView.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/declarative/tutorials/contacts/3_Collections/3/ContactView.qml b/examples/declarative/tutorials/contacts/3_Collections/3/ContactView.qml
index cc115e3..eac43c7 100644
--- a/examples/declarative/tutorials/contacts/3_Collections/3/ContactView.qml
+++ b/examples/declarative/tutorials/contacts/3_Collections/3/ContactView.qml
@@ -66,22 +66,22 @@ Item {
opacity: 0
//! [setting qml]
//! [binding]
- 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