summaryrefslogtreecommitdiff
path: root/src/dialogs
diff options
context:
space:
mode:
Diffstat (limited to 'src/dialogs')
-rw-r--r--src/dialogs/dialogs.pro2
-rw-r--r--src/dialogs/plugin.cpp2
2 files changed, 2 insertions, 2 deletions
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)