summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorten Sørvig <morten.sorvig@qt.io>2022-08-18 23:43:53 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-01-09 21:22:26 +0000
commitd55d93629b3a7616ceeae078ebfc90dc8598661b (patch)
treec80a4a7f84bc81dd6307f6db26e4e6698ff8adcf
parent70e070ecbd4d334598aed140a3825887733c3c59 (diff)
wasm: move Q_AUTOTEST_EXPORT to correct location
Should be placed between "class" and the class name. Change-Id: I418cdc2b200bf7b5147d4b4278f3d0b77786710d Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
-rw-r--r--src/plugins/platforms/wasm/qwasmwindowstack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platforms/wasm/qwasmwindowstack.h b/src/plugins/platforms/wasm/qwasmwindowstack.h
index e98ebf904c..2eb48b0865 100644
--- a/src/plugins/platforms/wasm/qwasmwindowstack.h
+++ b/src/plugins/platforms/wasm/qwasmwindowstack.h
@@ -21,7 +21,7 @@ class QWasmWindow;
// Access to the top element is facilitated by |topWindow|.
// Changes to the top element are signaled via the |topWindowChangedCallback| supplied at
// construction.
-Q_AUTOTEST_EXPORT class QWasmWindowStack
+class Q_AUTOTEST_EXPORT QWasmWindowStack
{
public:
using TopWindowChangedCallbackType = std::function<void()>;