summaryrefslogtreecommitdiffstats
path: root/examples/embedded
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2019-05-23 13:51:05 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2019-05-23 13:51:05 +0200
commitc9b7cc349a13b722ecd636ec4eb8e21f9f712add (patch)
tree508650db5fad8a4a69606b7e5d9468187ec6f4fb /examples/embedded
parentb6c7defd6ca25d70e0e7899b125efa499a08f08c (diff)
Remove usages of Q_OS_WINCE
This platform is history. Change-Id: Iddfab008a509f4828c321730414c8204055cf7af Reviewed-by: Maurice Kalinowski <maurice.kalinowski@qt.io>
Diffstat (limited to 'examples/embedded')
-rw-r--r--examples/embedded/raycasting/raycasting.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/embedded/raycasting/raycasting.cpp b/examples/embedded/raycasting/raycasting.cpp
index d37b9f5d2e..7213811213 100644
--- a/examples/embedded/raycasting/raycasting.cpp
+++ b/examples/embedded/raycasting/raycasting.cpp
@@ -255,11 +255,7 @@ public:
protected:
void resizeEvent(QResizeEvent*) {
-#if defined(Q_OS_WINCE_WM)
- touchDevice = true;
-#else
touchDevice = false;
-#endif
if (touchDevice) {
if (width() < height()) {
trackPad = QRect(0, height() / 2, width(), height() / 2);