fix(build): add missing Qt and Gui includes to ThemeSelectorWidget
Some checks failed
Build and Test / build (push) Successful in 1h9m41s
Release Build / build-linux (push) Failing after 18m43s
Release Build / build-macos (arm64, macos-14) (push) Has been cancelled
Release Build / build-macos (x86_64, macos-13) (push) Has been cancelled
Release Build / build-windows (push) Has been cancelled
Release Build / publish-release (push) Has been cancelled

Add QApplication, QEvent, and Gui/Application.h includes that were
missing, causing build failures with undeclared identifiers for qApp,
QEvent::LanguageChange, and Gui::Application::Instance.
This commit is contained in:
2026-02-05 10:06:00 -06:00
parent 7431746ef0
commit 67e5598b2e

View File

@@ -21,6 +21,8 @@
* *
***************************************************************************/
#include <QApplication>
#include <QEvent>
#include <QHBoxLayout>
#include <QLabel>
#include <QString>
@@ -28,6 +30,7 @@
#include "ThemeSelectorWidget.h"
#include <gsl/pointers>
#include <Gui/Application.h>
#include <Gui/PreferencePackManager.h>
using namespace StartGui;