diff options
author | Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io> | 2020-10-05 08:53:48 +0200 |
---|---|---|
committer | Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io> | 2020-10-05 09:13:09 +0200 |
commit | 50dbd5f508e03f1cc57300830049581bef9c73b2 (patch) | |
tree | db1ffe20e4e3856bcb4a41d62586770a0ff99770 /examples | |
parent | cfef774fb4036b2289c8b7a5d7fb361c722dad48 (diff) | |
download | qtwayland-50dbd5f508e03f1cc57300830049581bef9c73b2.tar.gz |
Fix examples to include IviApplication import
In 3a8449ff0a821ab072f66ea43fed6925090fc4d8, we added
support for IviShell in the compositor examples, but
the change hadn't been updated after the types were
moved into a separate import, so all examples fail on
start-up.
Change-Id: I08a88b775338471457060c8e45718c8da3f1e9ab
Reviewed-by: Paul Olav Tvete <paul.tvete@qt.io>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/wayland/hwlayer-compositor/main.qml | 1 | ||||
-rw-r--r-- | examples/wayland/minimal-qml/main.qml | 1 | ||||
-rw-r--r-- | examples/wayland/pure-qml/qml/main.qml | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/examples/wayland/hwlayer-compositor/main.qml b/examples/wayland/hwlayer-compositor/main.qml index aaea5b79..2b163e17 100644 --- a/examples/wayland/hwlayer-compositor/main.qml +++ b/examples/wayland/hwlayer-compositor/main.qml @@ -54,6 +54,7 @@ import QtQuick.Controls 2.2 import QtWayland.Compositor import QtWayland.Compositor.XdgShell import QtWayland.Compositor.WlShell +import QtWayland.Compositor.IviApplication WaylandCompositor { WaylandOutput { diff --git a/examples/wayland/minimal-qml/main.qml b/examples/wayland/minimal-qml/main.qml index a7709e09..152e0c93 100644 --- a/examples/wayland/minimal-qml/main.qml +++ b/examples/wayland/minimal-qml/main.qml @@ -53,6 +53,7 @@ import QtQuick.Window import QtWayland.Compositor import QtWayland.Compositor.XdgShell import QtWayland.Compositor.WlShell +import QtWayland.Compositor.IviApplication WaylandCompositor { // The output defines the screen. diff --git a/examples/wayland/pure-qml/qml/main.qml b/examples/wayland/pure-qml/qml/main.qml index eb4ae9ac..dffb81b3 100644 --- a/examples/wayland/pure-qml/qml/main.qml +++ b/examples/wayland/pure-qml/qml/main.qml @@ -52,6 +52,7 @@ import QtQuick import QtWayland.Compositor import QtWayland.Compositor.XdgShell import QtWayland.Compositor.WlShell +import QtWayland.Compositor.IviApplication WaylandCompositor { id: waylandCompositor |