summaryrefslogtreecommitdiff
path: root/tests/auto/qml/data/property.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/data/property.html')
-rw-r--r--tests/auto/qml/data/property.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qml/data/property.html b/tests/auto/qml/data/property.html
index 9565aaa..49b3811 100644
--- a/tests/auto/qml/data/property.html
+++ b/tests/auto/qml/data/property.html
@@ -5,9 +5,9 @@
<script type="text/javascript">
//BEGIN SETUP
createWebChannel(function(channel) {
- channel.exec({label: "init", value: myObj.myProperty()});
+ channel.exec({label: "init", value: myObj.myProperty});
myObj.myPropertyChanged.connect(function() {
- channel.exec({label: "changed", value: myObj.myProperty()});
+ channel.exec({label: "changed", value: myObj.myProperty});
});
channel.subscribe("setProperty", function(newValue) {
myObj.myProperty = newValue;