diff options
author | Lorn Potter <[email protected]> | 2022-06-15 13:56:42 +1000 |
---|---|---|
committer | Lorn Potter <[email protected]> | 2022-06-18 09:16:55 +1000 |
commit | ff0c7dfc6e3198c91cad099fd09657b8abba1d33 (patch) | |
tree | d50bdd0224b970929e4487307da8be58a132eb6b /src/plugins/platforms/wasm/qwasmoffscreensurface.cpp | |
parent | 87c2a401dabacddb94b61595e2873627c222c60a (diff) |
wasm: Fix up namespacing in wasm platform plugin
Pick-to: 6.4
Change-Id: I2fdbb6688b252743578dfcd58f9259eb5ac3cca8
Reviewed-by: Morten Johan Sørvig <[email protected]>
Diffstat (limited to 'src/plugins/platforms/wasm/qwasmoffscreensurface.cpp')
-rw-r--r-- | src/plugins/platforms/wasm/qwasmoffscreensurface.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/platforms/wasm/qwasmoffscreensurface.cpp b/src/plugins/platforms/wasm/qwasmoffscreensurface.cpp index bb04a66fcb1..79ec9af62b9 100644 --- a/src/plugins/platforms/wasm/qwasmoffscreensurface.cpp +++ b/src/plugins/platforms/wasm/qwasmoffscreensurface.cpp @@ -3,6 +3,8 @@ #include "qwasmoffscreensurface.h" +QT_BEGIN_NAMESPACE + QWasmOffscrenSurface::QWasmOffscrenSurface(QOffscreenSurface *offscreenSurface) :QPlatformOffscreenSurface(offscreenSurface) { @@ -13,3 +15,5 @@ QWasmOffscrenSurface::~QWasmOffscrenSurface() { } + +QT_END_NAMESPACE |