summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/visual
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-11-19 03:34:28 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-11-19 03:34:28 (GMT)
commita9a2b17b8a967c001137e12af570856d9ce4b937 (patch)
treeacef06e5d0bc9c994289531925c5a442767230da /tests/auto/declarative/visual
parent0b991014c55d02211eee01cad44b4ca4a2edb07d (diff)
downloadQt-a9a2b17b8a967c001137e12af570856d9ce4b937.zip
Qt-a9a2b17b8a967c001137e12af570856d9ce4b937.tar.gz
Qt-a9a2b17b8a967c001137e12af570856d9ce4b937.tar.bz2
Rename QML Object to QtObject
Diffstat (limited to 'tests/auto/declarative/visual')
-rw-r--r--tests/auto/declarative/visual/webview/javascript/evaluateJavaScript.qml2
-rw-r--r--tests/auto/declarative/visual/webview/javascript/windowObjects.qml2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/visual/webview/javascript/evaluateJavaScript.qml b/tests/auto/declarative/visual/webview/javascript/evaluateJavaScript.qml
index d3cf578..78d5cfc 100644
--- a/tests/auto/declarative/visual/webview/javascript/evaluateJavaScript.qml
+++ b/tests/auto/declarative/visual/webview/javascript/evaluateJavaScript.qml
@@ -7,7 +7,7 @@ Column {
height: 200
url: "test-objects.html"
javaScriptWindowObjects:
- Object {
+ QtObject {
property string text: btntext.text
WebView.windowObjectName: "qmltext"
onTextChanged: {
diff --git a/tests/auto/declarative/visual/webview/javascript/windowObjects.qml b/tests/auto/declarative/visual/webview/javascript/windowObjects.qml
index f1d4097..a41de9a 100644
--- a/tests/auto/declarative/visual/webview/javascript/windowObjects.qml
+++ b/tests/auto/declarative/visual/webview/javascript/windowObjects.qml
@@ -6,7 +6,7 @@ Column {
height: 200
url: "test-objects.html"
javaScriptWindowObjects:
- Object {
+ QtObject {
property string text: btntext.text
WebView.windowObjectName: "qmltext"
}