From 0029fc40d11b4c929d6151c943cb6025d51ac54b Mon Sep 17 00:00:00 2001 From: reionwong Date: Sun, 30 Aug 2026 04:07:26 -0400 Subject: [PATCH] fix: support Qt 6.10 and Debian changelog --- debian/changelog | 2 +- platformtheme/platformtheme.h | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index ef7d24b..bdd660e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,4 +2,4 @@ cutefish-qt-plugins (0.6) UNRELEASED; urgency=high * Initial release (CutefishOS) - -- CutefishOS Packaging Team Sun, 21 Nov 2021 13:52:29 +0800 + -- CutefishOS Packaging Team Sun, 21 Nov 2021 13:52:29 +0800 diff --git a/platformtheme/platformtheme.h b/platformtheme/platformtheme.h index 4eabab6..e9e7216 100644 --- a/platformtheme/platformtheme.h +++ b/platformtheme/platformtheme.h @@ -1,7 +1,13 @@ #ifndef PLATFORMTHEME_H #define PLATFORMTHEME_H +#include + +#if QT_VERSION >= QT_VERSION_CHECK(6, 10, 0) +#include +#else #include +#endif #include "hintsettings.h" #include "systemtrayicon.h"