summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@qt.io>2022-05-31 20:21:56 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-06-01 10:26:42 +0000
commit76013196501b7adbe890e231c6d2a39f795034e6 (patch)
tree01eeac5cfeb979e00f026fcc5fad141ab0e4d1c9
parentaf9964b88b79ee3716a88beb2a5fb3243ded0139 (diff)
Add missing QT_{BEGIN,END}_NAMESPACE
Found by the includemoc script complaining. Task-number: QTBUG-103295 Change-Id: I56513a331c098c1511b0b0091902f1e83f61e5c2 Reviewed-by: Marc Mutz <marc.mutz@qt.io> (cherry picked from commit ab90ea0ea1ed656bce3d8f70237072c08e24e6e3) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--src/compositor/extensions/qwaylandquickshellintegration.cpp4
-rw-r--r--src/compositor/extensions/qwaylandquickxdgoutputv1.cpp4
-rw-r--r--src/compositor/extensions/qwaylandshellsurface.cpp4
3 files changed, 12 insertions, 0 deletions
diff --git a/src/compositor/extensions/qwaylandquickshellintegration.cpp b/src/compositor/extensions/qwaylandquickshellintegration.cpp
index 4a50cf07e..8c77b1509 100644
--- a/src/compositor/extensions/qwaylandquickshellintegration.cpp
+++ b/src/compositor/extensions/qwaylandquickshellintegration.cpp
@@ -80,6 +80,8 @@
* \sa QObject::eventFilter()
*/
+QT_BEGIN_NAMESPACE
+
QWaylandQuickShellIntegration::QWaylandQuickShellIntegration(QObject *parent)
: QObject(parent)
{
@@ -88,3 +90,5 @@ QWaylandQuickShellIntegration::QWaylandQuickShellIntegration(QObject *parent)
QWaylandQuickShellIntegration::~QWaylandQuickShellIntegration()
{
}
+
+QT_END_NAMESPACE
diff --git a/src/compositor/extensions/qwaylandquickxdgoutputv1.cpp b/src/compositor/extensions/qwaylandquickxdgoutputv1.cpp
index 017175f85..769a91b95 100644
--- a/src/compositor/extensions/qwaylandquickxdgoutputv1.cpp
+++ b/src/compositor/extensions/qwaylandquickxdgoutputv1.cpp
@@ -33,6 +33,8 @@
#include "qwaylandquickxdgoutputv1.h"
#include "qwaylandxdgoutputv1_p.h"
+QT_BEGIN_NAMESPACE
+
QWaylandQuickXdgOutputV1::QWaylandQuickXdgOutputV1()
: QWaylandXdgOutputV1()
{
@@ -64,3 +66,5 @@ void QWaylandQuickXdgOutputV1::componentComplete()
}
}
}
+
+QT_END_NAMESPACE
diff --git a/src/compositor/extensions/qwaylandshellsurface.cpp b/src/compositor/extensions/qwaylandshellsurface.cpp
index 373a06cff..5c4acc8d2 100644
--- a/src/compositor/extensions/qwaylandshellsurface.cpp
+++ b/src/compositor/extensions/qwaylandshellsurface.cpp
@@ -82,3 +82,7 @@
*
* This property holds the window type of the QWaylandShellSurface.
*/
+
+QT_BEGIN_NAMESPACE
+
+QT_END_NAMESPACE