aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-09-30 19:56:01 +0200
committerSefa Eyeoglu <contact@scrumplex.net>2022-09-30 19:56:01 +0200
commit7ccafdc99321e82ee0f504a573a5c978480374a2 (patch)
tree1ba6212c4b84ee6855853796cd87a2eb432073cb
parent0dca9cb6b89b9ce358e8d673d1fca8da6723ed49 (diff)
downloadPrismLauncher-7ccafdc99321e82ee0f504a573a5c978480374a2.tar.gz
PrismLauncher-7ccafdc99321e82ee0f504a573a5c978480374a2.tar.bz2
PrismLauncher-7ccafdc99321e82ee0f504a573a5c978480374a2.zip
fix: add missing includes to fix Qt 6.4 build
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
-rw-r--r--launcher/ui/themes/BrightTheme.cpp2
-rw-r--r--launcher/ui/themes/DarkTheme.cpp2
2 files changed, 4 insertions, 0 deletions
diff --git a/launcher/ui/themes/BrightTheme.cpp b/launcher/ui/themes/BrightTheme.cpp
index b9188bdd..7469edfc 100644
--- a/launcher/ui/themes/BrightTheme.cpp
+++ b/launcher/ui/themes/BrightTheme.cpp
@@ -1,5 +1,7 @@
#include "BrightTheme.h"
+#include <QObject>
+
QString BrightTheme::id()
{
return "bright";
diff --git a/launcher/ui/themes/DarkTheme.cpp b/launcher/ui/themes/DarkTheme.cpp
index 712a9d3e..c2a6a8df 100644
--- a/launcher/ui/themes/DarkTheme.cpp
+++ b/launcher/ui/themes/DarkTheme.cpp
@@ -1,5 +1,7 @@
#include "DarkTheme.h"
+#include <QObject>
+
QString DarkTheme::id()
{
return "dark";