diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ui/NhekoGlobalObject.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/NhekoGlobalObject.cpp b/src/ui/NhekoGlobalObject.cpp index 0bdb45f4..1bab73b5 100644 --- a/src/ui/NhekoGlobalObject.cpp +++ b/src/ui/NhekoGlobalObject.cpp @@ -18,7 +18,9 @@ #include "Utils.h" #include "voip/WebRTCSession.h" +#if XCB_AVAILABLE #include <xcb/xproto.h> +#endif Nheko::Nheko() { @@ -184,6 +186,7 @@ Nheko::createRoom(bool space, void Nheko::setWindowRole([[maybe_unused]] QWindow *win, [[maybe_unused]] QString newRole) const { +#if XCB_AVAILABLE const QNativeInterface::QX11Application *x11Interface = qGuiApp->nativeInterface<QNativeInterface::QX11Application>(); @@ -208,4 +211,5 @@ Nheko::setWindowRole([[maybe_unused]] QWindow *win, [[maybe_unused]] QString new 8, role.size(), role.data()); +#endif } |