diff options
author | Tor Arne Vestbø <[email protected]> | 2025-06-18 15:56:58 +0200 |
---|---|---|
committer | Tor Arne Vestbø <[email protected]> | 2025-06-18 20:03:58 +0200 |
commit | 9122dfcb97749d0eb3dd109f21e405c0c9d286f0 (patch) | |
tree | 3edf697b41ad83903611b5c21e1644e383224664 | |
parent | e97b9cd671003e2b2ab2f66bc649cc76fcc3a9a0 (diff) |
macOS: Fix -no-opengl build due to missing QHash include
Fallout from 6f67925799407216b999709d86ac180c1106fa9e.
Fixes: QTBUG-137822
Pick-to: 6.10
Change-Id: I3a813d490d10fb8d520a2ed77aec6daff7b67e49
Reviewed-by: Timur Pocheptsov <[email protected]>
-rw-r--r-- | src/plugins/platforms/cocoa/qcocoawindow.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/platforms/cocoa/qcocoawindow.h b/src/plugins/platforms/cocoa/qcocoawindow.h index c7a5d55344a..f378c8aba03 100644 --- a/src/plugins/platforms/cocoa/qcocoawindow.h +++ b/src/plugins/platforms/cocoa/qcocoawindow.h @@ -19,6 +19,7 @@ #include <MoltenVK/mvk_vulkan.h> #endif +#include <QtCore/qhash.h> #include <QtCore/private/qflatmap_p.h> Q_FORWARD_DECLARE_OBJC_CLASS(NSWindow); |