summaryrefslogtreecommitdiffstats
path: root/examples/qtquick/quickwindow.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qtquick/quickwindow.qml')
-rw-r--r--examples/qtquick/quickwindow.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/qtquick/quickwindow.qml b/examples/qtquick/quickwindow.qml
index 688014b6f..7d42b2c01 100644
--- a/examples/qtquick/quickwindow.qml
+++ b/examples/qtquick/quickwindow.qml
@@ -49,24 +49,6 @@ ApplicationWindow {
anchors.fill: parent
url: "http://qt-project.org/"
- Binding {
- target: webContentsView.children[0]
- property: 'anchors.fill'
- value: webContentsView
- when: webContentsView.children.length > 0
- }
-
onUrlChanged: addressBar.text = url
}
-
- Text {
- id: info
- anchors.top: parent.top
- anchors.right: parent.right
- horizontalAlignment: "AlignRight"
- width: 100
- height: 100
-
- text: viewContainer.children[0].width + "x" + viewContainer.children[0].height
- }
}