diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-11-19 03:34:28 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-11-19 03:34:28 (GMT) |
commit | a9a2b17b8a967c001137e12af570856d9ce4b937 (patch) | |
tree | acef06e5d0bc9c994289531925c5a442767230da /examples/declarative/webview/content | |
parent | 0b991014c55d02211eee01cad44b4ca4a2edb07d (diff) | |
download | Qt-a9a2b17b8a967c001137e12af570856d9ce4b937.zip Qt-a9a2b17b8a967c001137e12af570856d9ce4b937.tar.gz Qt-a9a2b17b8a967c001137e12af570856d9ce4b937.tar.bz2 |
Rename QML Object to QtObject
Diffstat (limited to 'examples/declarative/webview/content')
-rw-r--r-- | examples/declarative/webview/content/Mapping/Map.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/webview/content/Mapping/Map.qml b/examples/declarative/webview/content/Mapping/Map.qml index 9bde031..aae6b5d 100644 --- a/examples/declarative/webview/content/Mapping/Map.qml +++ b/examples/declarative/webview/content/Mapping/Map.qml @@ -9,7 +9,7 @@ Item { id: map
anchors.fill: parent
url: "map.html"
- javaScriptWindowObjects: Object {
+ javaScriptWindowObjects: QtObject {
WebView.windowObjectName: "qml"
property real lat: page.latitude
property real lng: page.longitude
|