From 2d95248e3ea5205858beb14fbbae8f222f2685ed Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Sat, 8 Feb 2025 21:24:17 +0100 Subject: [PATCH] added missing QVariant include MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I ran into a compilation error because this include was missing: client/src/audio/notification_sound_engine.h:46:9: error: return type ‘class QVariant’ is incomplete This simple patch fixes it. --- client/src/audio/notification_sound_engine.h | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/audio/notification_sound_engine.h b/client/src/audio/notification_sound_engine.h index 3d37d58b..07ed3d5c 100644 --- a/client/src/audio/notification_sound_engine.h +++ b/client/src/audio/notification_sound_engine.h @@ -8,6 +8,7 @@ #include #include #include +#include namespace xpilot {