diff options
author | Liang Qi <liang.qi@qt.io> | 2022-05-31 20:21:56 +0200 |
---|---|---|
committer | Marc Mutz <marc.mutz@qt.io> | 2022-06-01 08:57:51 +0000 |
commit | ab90ea0ea1ed656bce3d8f70237072c08e24e6e3 (patch) | |
tree | 6a5560e0a24b7674844fcef5becc875dea6f4df7 /src/compositor/extensions/qwaylandquickshellintegration.cpp | |
parent | e5f180987fcc9e18f0cd4c87d78c6ba117704f82 (diff) | |
download | qtwayland-ab90ea0ea1ed656bce3d8f70237072c08e24e6e3.tar.gz |
Add missing QT_{BEGIN,END}_NAMESPACE
Found by the includemoc script complaining.
Pick-to: 6.3 6.2 5.15
Task-number: QTBUG-103295
Change-Id: I56513a331c098c1511b0b0091902f1e83f61e5c2
Reviewed-by: Marc Mutz <marc.mutz@qt.io>
Diffstat (limited to 'src/compositor/extensions/qwaylandquickshellintegration.cpp')
-rw-r--r-- | src/compositor/extensions/qwaylandquickshellintegration.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compositor/extensions/qwaylandquickshellintegration.cpp b/src/compositor/extensions/qwaylandquickshellintegration.cpp index 100e4bd5..4160fd9e 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 |