diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-08-21 00:07:17 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-08-21 00:07:17 (GMT) |
commit | af15183ca230cb96ef9e2901e3fbb716eb4300bb (patch) | |
tree | c84d4bed8a1acba57c898446259f4028f9dd4e72 /examples/declarative/tutorials | |
parent | f738eab2d811e7d2ef274c3b7819c1231669e8b8 (diff) | |
download | Qt-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.qml | 8 |
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 |