summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.qmake.conf2
-rw-r--r--src/dialogs/dialogs.pro2
-rw-r--r--src/dialogs/plugin.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/.qmake.conf b/.qmake.conf
index c053efd7..63a29783 100644
--- a/.qmake.conf
+++ b/.qmake.conf
@@ -1,5 +1,5 @@
load(qt_build_config)
CONFIG += warning_clean
-android|ios|qnx|winrt|isEmpty(QT.widgets.name): CONFIG += no_desktop
+android|ios|qnx|isEmpty(QT.widgets.name): CONFIG += no_desktop
MODULE_VERSION = 5.11.0
diff --git a/src/dialogs/dialogs.pro b/src/dialogs/dialogs.pro
index 362f5584..ef0878ce 100644
--- a/src/dialogs/dialogs.pro
+++ b/src/dialogs/dialogs.pro
@@ -72,7 +72,7 @@ DIALOGS_QML_FILES += \
images/window_border.png \
$$WIDGET_DIALOGS_QML_FILES
-ios|android|blackberry|winrt {
+ios|android|blackberry {
DIALOGS_QML_FILES -= $$WIDGET_DIALOGS_QML_FILES
}
diff --git a/src/dialogs/plugin.cpp b/src/dialogs/plugin.cpp
index 8ee1e65d..1e6740d5 100644
--- a/src/dialogs/plugin.cpp
+++ b/src/dialogs/plugin.cpp
@@ -214,7 +214,7 @@ protected:
bool mobileTouchPlatform = false;
#if defined(Q_OS_IOS)
mobileTouchPlatform = true;
-#elif defined(Q_OS_ANDROID) || defined(Q_OS_BLACKBERRY) || defined(Q_OS_QNX) || defined(Q_OS_WINRT)
+#elif defined(Q_OS_ANDROID) || defined(Q_OS_BLACKBERRY) || defined(Q_OS_QNX)
const auto devices = QTouchDevice::devices();
for (const QTouchDevice *dev : devices)
if (dev->type() == QTouchDevice::TouchScreen)