aboutsummaryrefslogtreecommitdiff
path: root/oshelper.cpp
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2019-08-10 22:09:30 +0200
committerselsta <selsta@sent.at>2019-08-10 22:09:30 +0200
commit049cef9ce327af40cf8222976f88d08f103dc364 (patch)
treef21d8c6b9d3b6b6064b15ba2f8951c0f80c2bad7 /oshelper.cpp
parent55b4425c5db5d25e72dc9089d9ec5aac4f2c5ddf (diff)
downloadmonzero-gui-049cef9ce327af40cf8222976f88d08f103dc364.tar.gz
monzero-gui-049cef9ce327af40cf8222976f88d08f103dc364.tar.xz
monzero-gui-049cef9ce327af40cf8222976f88d08f103dc364.zip
android: fix build
Diffstat (limited to 'oshelper.cpp')
-rw-r--r--oshelper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/oshelper.cpp b/oshelper.cpp
index d3e4d063..c1326c0f 100644
--- a/oshelper.cpp
+++ b/oshelper.cpp
@@ -37,7 +37,7 @@
#ifdef Q_OS_WIN32
#include <windows.h>
#endif
-#ifdef Q_OS_LINUX
+#if defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID)
#include <X11/XKBlib.h>
#undef KeyPress
#undef KeyRelease
@@ -78,7 +78,7 @@ bool OSHelper::isCapsLock() const
// platform dependent method of determining if CAPS LOCK is on
#if defined(Q_OS_WIN32) // MS Windows version
return GetKeyState(VK_CAPITAL) == 1;
-#elif defined(Q_OS_LINUX) // X11 version
+#elif defined(Q_OS_LINUX) && !defined(Q_OS_ANDROID) // X11 version
Display * d = XOpenDisplay((char*)0);
bool caps_state = false;
if (d) {