From 2142a8dd9cb10334ac83404bba34f0024c388b76 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Thu, 20 Jun 2024 17:07:30 +0200 Subject: Fix compilation on systems without specific platform interfaces fixes #1749 --- src/ui/NhekoGlobalObject.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ui/NhekoGlobalObject.cpp') diff --git a/src/ui/NhekoGlobalObject.cpp b/src/ui/NhekoGlobalObject.cpp index 138b4283..e28b1bc1 100644 --- a/src/ui/NhekoGlobalObject.cpp +++ b/src/ui/NhekoGlobalObject.cpp @@ -19,7 +19,7 @@ #include "UserSettingsPage.h" #include "Utils.h" -#if XCB_AVAILABLE +#if XCB_AVAILABLE && QT_CONFIG(xcb) #include #endif @@ -186,7 +186,7 @@ Nheko::createRoom(bool space, void Nheko::setWindowRole([[maybe_unused]] QWindow *win, [[maybe_unused]] QString newRole) const { -#if XCB_AVAILABLE +#if XCB_AVAILABLE && QT_CONFIG(xcb) const QNativeInterface::QX11Application *x11Interface = qGuiApp->nativeInterface(); -- cgit 1.4.1