summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlbinding/data/test-binding.qml
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-11-16 03:50:00 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-11-16 03:50:00 (GMT)
commitefb25bac3131b4ca39a44a16526d88c814986d60 (patch)
tree21483188d9e1cb2008ff95c88b20bfc3fbdebc62 /tests/auto/declarative/qmlbinding/data/test-binding.qml
parentee4278059939902482c7f457089aaf484358113b (diff)
downloadQt-efb25bac3131b4ca39a44a16526d88c814986d60.zip
Qt-efb25bac3131b4ca39a44a16526d88c814986d60.tar.gz
Qt-efb25bac3131b4ca39a44a16526d88c814986d60.tar.bz2
Autotests.
Diffstat (limited to 'tests/auto/declarative/qmlbinding/data/test-binding.qml')
-rw-r--r--tests/auto/declarative/qmlbinding/data/test-binding.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/declarative/qmlbinding/data/test-binding.qml b/tests/auto/declarative/qmlbinding/data/test-binding.qml
index d2a22f5..e9101e4 100644
--- a/tests/auto/declarative/qmlbinding/data/test-binding.qml
+++ b/tests/auto/declarative/qmlbinding/data/test-binding.qml
@@ -10,7 +10,7 @@ Rectangle {
Rectangle { id: r1; width: 1; height: 1; color: "yellow" }
Rectangle { id: r2; width: 1; height: 1; color: "red" }
- Binding { target: screen; property: "text"; value: s1.text }
+ Binding { target: screen; property: "text"; value: s1.text; objectName: "binding1" }
Binding { target: screen; property: "color"; value: r1.color }
Binding { target: screen; property: "color"; when: screen.changeColor == true; value: r2.color }
}