aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Rødal <samuel.rodal@digia.com>2012-09-23 23:22:05 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-09-25 17:22:33 +0200
commitc36caa3377c07357bb97376c519dbdf281f35dc2 (patch)
tree3df6b11a4fd9edfac521a71ccff8c63d87415297
parentcca0a173bc12265fbfec1e4c73f2aee667cd5aa5 (diff)
Android also needs <ctype.h> for isspace() to be found.
Change-Id: Ic1299cd8949c37c6909b8d2ab36e930097335a4d Reviewed-by: Lars Knoll <lars.knoll@digia.com>
-rw-r--r--src/quick/items/context2d/qquickcontext2d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quick/items/context2d/qquickcontext2d.cpp b/src/quick/items/context2d/qquickcontext2d.cpp
index c7e17901b6..47e3c9e1a7 100644
--- a/src/quick/items/context2d/qquickcontext2d.cpp
+++ b/src/quick/items/context2d/qquickcontext2d.cpp
@@ -64,7 +64,7 @@
#include <private/qquickwindow_p.h>
#include <private/qquickwindowmanager_p.h>
-#ifdef Q_OS_QNX
+#if defined(Q_OS_QNX) || defined(Q_OS_LINUX_ANDROID)
#include <ctype.h>
#endif