summaryrefslogtreecommitdiff
path: root/examples/wayland/pure-qml/qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/wayland/pure-qml/qml/main.qml')
-rw-r--r--examples/wayland/pure-qml/qml/main.qml15
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/wayland/pure-qml/qml/main.qml b/examples/wayland/pure-qml/qml/main.qml
index 65ac3616..c50d4b67 100644
--- a/examples/wayland/pure-qml/qml/main.qml
+++ b/examples/wayland/pure-qml/qml/main.qml
@@ -72,10 +72,6 @@ WaylandCompositor {
WindowManager {
id: qtWindowManager
onShowIsFullScreenChanged: console.debug("Show is fullscreen hint for Qt applications:", showIsFullScreen)
-
- Component.onCompleted: {
- initialize();
- }
},
WlShell {
id: defaultShell
@@ -83,10 +79,6 @@ WaylandCompositor {
onShellSurfaceCreated: {
chromeComponent.createObject(defaultOutput.surfaceArea, { "shellSurface": shellSurface } );
}
-
- Component.onCompleted: {
- initialize();
- }
},
XdgShell {
id: xdgShell
@@ -94,15 +86,8 @@ WaylandCompositor {
onXdgSurfaceCreated: {
xdgChromeComponent.createObject(defaultOutput.surfaceArea, { "xdgSurface": xdgSurface } );
}
-
- Component.onCompleted: {
- initialize();
- }
},
TextInputManager {
- Component.onCompleted: {
- initialize();
- }
}
]