summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dependencies.yaml4
-rw-r--r--src/compositor/compositor_api/qwaylandseat.h1
-rw-r--r--src/compositor/compositor_api/qwaylandsurface.h2
-rw-r--r--src/imports/compositor/qmldir2
-rw-r--r--tests/auto/client/nooutput/tst_nooutput.cpp1
5 files changed, 7 insertions, 3 deletions
diff --git a/dependencies.yaml b/dependencies.yaml
index ea21c604e..6acb75103 100644
--- a/dependencies.yaml
+++ b/dependencies.yaml
@@ -1,7 +1,7 @@
dependencies:
../qtbase:
- ref: 239982901beaf039c25b264a9c6b63aa6fe70710
+ ref: 46c1e609893b09a61d70dda3589e6b8d25261468
required: true
../qtdeclarative:
- ref: 498149fc8ea7a58b355351a1697b6496e76f9a70
+ ref: 6412bcd2219d2a5c1f8193d8f394ddb1279dee2b
required: false
diff --git a/src/compositor/compositor_api/qwaylandseat.h b/src/compositor/compositor_api/qwaylandseat.h
index 60d090e9e..e77126e28 100644
--- a/src/compositor/compositor_api/qwaylandseat.h
+++ b/src/compositor/compositor_api/qwaylandseat.h
@@ -64,6 +64,7 @@ class Q_WAYLAND_COMPOSITOR_EXPORT QWaylandSeat : public QWaylandObject
#endif
Q_PROPERTY(QWaylandKeymap *keymap READ keymap CONSTANT)
Q_MOC_INCLUDE("qwaylandkeymap.h")
+ Q_MOC_INCLUDE("qwaylandview.h")
QML_NAMED_ELEMENT(WaylandSeat)
QML_ADDED_IN_VERSION(1, 0)
diff --git a/src/compositor/compositor_api/qwaylandsurface.h b/src/compositor/compositor_api/qwaylandsurface.h
index 8558866b9..7fe9d3fd9 100644
--- a/src/compositor/compositor_api/qwaylandsurface.h
+++ b/src/compositor/compositor_api/qwaylandsurface.h
@@ -79,6 +79,8 @@ class Q_WAYLAND_COMPOSITOR_EXPORT QWaylandSurface : public QWaylandObject
Q_PROPERTY(bool hasContent READ hasContent NOTIFY hasContentChanged)
Q_PROPERTY(bool cursorSurface READ isCursorSurface WRITE markAsCursorSurface NOTIFY cursorSurfaceChanged)
Q_PROPERTY(bool inhibitsIdle READ inhibitsIdle NOTIFY inhibitsIdleChanged REVISION(1, 14))
+ Q_MOC_INCLUDE("qwaylanddrag.h")
+ Q_MOC_INCLUDE("qwaylandcompositor.h")
QML_NAMED_ELEMENT(WaylandSurfaceBase)
QML_ADDED_IN_VERSION(1, 0)
diff --git a/src/imports/compositor/qmldir b/src/imports/compositor/qmldir
index ea92deec8..3e8ad1067 100644
--- a/src/imports/compositor/qmldir
+++ b/src/imports/compositor/qmldir
@@ -2,5 +2,5 @@ module QtWayland.Compositor
plugin qwaylandcompositorplugin
classname QWaylandCompositorPlugin
typeinfo plugins.qmltypes
-WaylandCursorItem 1.0 WaylandCursorItem.qml
WaylandOutputWindow 1.0 WaylandOutputWindow.qml
+WaylandCursorItem 1.0 WaylandCursorItem.qml
diff --git a/tests/auto/client/nooutput/tst_nooutput.cpp b/tests/auto/client/nooutput/tst_nooutput.cpp
index 098d88d99..7f491c840 100644
--- a/tests/auto/client/nooutput/tst_nooutput.cpp
+++ b/tests/auto/client/nooutput/tst_nooutput.cpp
@@ -56,6 +56,7 @@ private slots:
void tst_nooutput::noScreens()
{
+ QSKIP("QTBUG-86698 - Temporarily skipped for dependency update");
QRasterWindow window;
window.resize(16, 16);
window.show();