summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/wasm/qwasmwindowstack.h
diff options
context:
space:
mode:
authorMikolaj Boc <[email protected]>2022-10-19 14:12:06 +0200
committerMikolaj Boc <[email protected]>2022-10-20 16:36:23 +0200
commitfffea48ea57fc71993a43d7658c1e49d14234b87 (patch)
tree5b898ef323ea6b981f29de0c62851609face7e67 /src/plugins/platforms/wasm/qwasmwindowstack.h
parentcdd7163c6071ac2020a1750cf2820ecea057abe4 (diff)
Fix typo in QWasmWindowStack's name
'Wasm' in it is duplicated. Change-Id: Ie00e02fb7ae4d9e13f490ce2d46a4eabf3f5710c Reviewed-by: Lorn Potter <[email protected]>
Diffstat (limited to 'src/plugins/platforms/wasm/qwasmwindowstack.h')
-rw-r--r--src/plugins/platforms/wasm/qwasmwindowstack.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/platforms/wasm/qwasmwindowstack.h b/src/plugins/platforms/wasm/qwasmwindowstack.h
index 4193089056e..e98ebf904c2 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 QWasmWasmWindowStack
+Q_AUTOTEST_EXPORT class QWasmWindowStack
{
public:
using TopWindowChangedCallbackType = std::function<void()>;
@@ -32,8 +32,8 @@ public:
using const_iterator = StorageType::const_reverse_iterator;
using const_reverse_iterator = StorageType::const_iterator;
- explicit QWasmWasmWindowStack(TopWindowChangedCallbackType topWindowChangedCallback);
- ~QWasmWasmWindowStack();
+ explicit QWasmWindowStack(TopWindowChangedCallbackType topWindowChangedCallback);
+ ~QWasmWindowStack();
void pushWindow(QWasmWindow *window);
void removeWindow(QWasmWindow *window);