summaryrefslogtreecommitdiffstats
path: root/examples/wayland/pure-qml/qml/main.qml
diff options
context:
space:
mode:
authorJørgen Lind <jorgen.lind@theqtcompany.com>2015-09-01 10:51:39 +0200
committerJørgen Lind <jorgen.lind@theqtcompany.com>2015-09-02 12:13:41 +0200
commit5addf79903a9007cfb65ad09e46d2c47f4a2cc37 (patch)
treed6957e81250ce3d4714a54c7f77a4a1af4c7b165 /examples/wayland/pure-qml/qml/main.qml
parent4f86a16f0366cea103b68d2e39e86eb3bbd30734 (diff)
Make Manufacturer & Model modifiable properties of QWaylandOutput
This to make construction look nicer and make them modifyable from QML Change-Id: I5f5ffffb34f664914cdb531736c42a6873bfe18c
Diffstat (limited to 'examples/wayland/pure-qml/qml/main.qml')
-rw-r--r--examples/wayland/pure-qml/qml/main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/wayland/pure-qml/qml/main.qml b/examples/wayland/pure-qml/qml/main.qml
index 642a60325..bcdab7e37 100644
--- a/examples/wayland/pure-qml/qml/main.qml
+++ b/examples/wayland/pure-qml/qml/main.qml
@@ -80,7 +80,7 @@ WaylandCompositor {
function addScreen() {
var screen = screenComponent.createObject(0, { "compositor" : compositor } );
primarySurfacesArea = screen.surfacesArea;
- var output = compositor.primaryOutputSpace.addOutputWindow(screen, "", "");
+ var output = compositor.primaryOutputSpace.addOutputWindow(screen);
output.automaticFrameCallbacks = true;
}