diff options
author | Pier Luigi Fiorini <pierluigi.fiorini@gmail.com> | 2017-01-07 22:33:13 +0100 |
---|---|---|
committer | Pier Luigi Fiorini <pierluigi.fiorini@hawaiios.org> | 2017-01-09 17:55:36 +0000 |
commit | 5e6259b09326022324709c44ad533d004056e048 (patch) | |
tree | 44bc3c4f97f8316a35b437274996cca14e9f8269 /src/imports | |
parent | 2107e635e2d5f6e9509c5e3c7bf6495dc43f2cd0 (diff) | |
download | qtwayland-5e6259b09326022324709c44ad533d004056e048.tar.gz |
Register QWaylandXdgShellV5 as uncreatable type
Accessing the shell property of QWaylandXdgSurfaceV5 results in an
error because QWaylandXdgShellV5 is not registered.
Change-Id: I72504508b860c720d26057c0da21d303345ace41
Reviewed-by: Johan Helsing <johan.helsing@qt.io>
Diffstat (limited to 'src/imports')
-rw-r--r-- | src/imports/compositor/qwaylandquickcompositorplugin.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/imports/compositor/qwaylandquickcompositorplugin.cpp b/src/imports/compositor/qwaylandquickcompositorplugin.cpp index 0caa4a35..4444c953 100644 --- a/src/imports/compositor/qwaylandquickcompositorplugin.cpp +++ b/src/imports/compositor/qwaylandquickcompositorplugin.cpp @@ -141,6 +141,7 @@ public: qmlRegisterType<QWaylandWlShellQuickExtension>(uri, 1, 0, "WlShell"); qmlRegisterType<QWaylandWlShellSurface>(uri, 1, 0, "WlShellSurface"); qmlRegisterType<QWaylandQuickShellSurfaceItem>(uri, 1, 0, "ShellSurfaceItem"); + qmlRegisterUncreatableType<QWaylandXdgShellV5>(uri, 1, 0, "XdgShellV5Base", QObject::tr("Cannot create instance of XdgShellV5Base")); qmlRegisterType<QWaylandXdgShellV5QuickExtension>(uri, 1, 0, "XdgShellV5"); qmlRegisterType<QWaylandXdgSurfaceV5>(uri, 1, 0, "XdgSurfaceV5"); qmlRegisterType<QWaylandTextInputManagerQuickExtension>(uri, 1, 0, "TextInputManager"); |