aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@theqtcompany.com>2015-10-07 14:13:18 +0200
committerAlex Blasche <alexander.blasche@theqtcompany.com>2015-10-16 06:54:46 +0000
commitf1b169293b75cd85b75747b5f5e2b95461c279cf (patch)
tree9a92a0ddd497175bc7013f1892ebe0f7a42afda3 /src/qml/doc
parent5c64391fb4eb7c85634d08327e2cf82182260ac9 (diff)
Make obj2's text consistent between qtBinding.[23].qml
The expected text output sides with .3.qml, so fix .2.qml Task-number: QTBUG-48652 Change-Id: I91ac0ab0854df95e06225938d195cd5e3be5abc3 Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'src/qml/doc')
-rw-r--r--src/qml/doc/snippets/qml/qtBinding.2.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/doc/snippets/qml/qtBinding.2.qml b/src/qml/doc/snippets/qml/qtBinding.2.qml
index 6a9a2de750..6159b31748 100644
--- a/src/qml/doc/snippets/qml/qtBinding.2.qml
+++ b/src/qml/doc/snippets/qml/qtBinding.2.qml
@@ -52,7 +52,7 @@ Item {
root.dynamicText = "Modified root text"
var obj2 = c.createObject(root, { 'text': Qt.binding(function() { return this.dynamicText + ' extra text' }) })
- obj2.dynamicText = "Modified text element text"
+ obj2.dynamicText = "Modified dynamic text"
}
}
//![0]