From 714caa7aa3bf6435f4c232923fbbe421d0f4736c Mon Sep 17 00:00:00 2001 From: Jimi Huotari Date: Thu, 4 Jun 2026 08:25:45 +0300 Subject: [PATCH] frontend: Fix build with Qt 6.12 After Qt upstream commit 556028d16a0 [1], 'QHash' and 'QSet' need to be explicitly included when using 'QT_ENABLE_STRICT_MODE_UP_TO'. 1. https://code.qt.io/cgit/qt/qtbase.git/commit/?id=556028d16a059006cc5a03676260aff5428b767e Signed-off-by: Jimi Huotari --- frontend/OBSApp.hpp | 1 + frontend/OBSApp_Themes.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/frontend/OBSApp.hpp b/frontend/OBSApp.hpp index dabca7876..37bd37d3c 100644 --- a/frontend/OBSApp.hpp +++ b/frontend/OBSApp.hpp @@ -29,6 +29,7 @@ #include #include +#include #include #include #include diff --git a/frontend/OBSApp_Themes.cpp b/frontend/OBSApp_Themes.cpp index 316062133..6e5d06e5f 100644 --- a/frontend/OBSApp_Themes.cpp +++ b/frontend/OBSApp_Themes.cpp @@ -31,6 +31,7 @@ #include #include #include +#include #include using namespace std;