summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaurice Kalinowski <maurice.kalinowski@theqtcompany.com>2015-03-10 01:32:03 -0700
committerMaurice Kalinowski <maurice.kalinowski@theqtcompany.com>2015-03-11 11:55:28 +0000
commitd04eb32908cfa7c6692bacfc292494b85ce3cd8a (patch)
tree0f08e6ab470ea417986a89bb36354bf7c2c90052
parentfa0b47ec506d2fe8dad9e77d3ac1e6c5f060f310 (diff)
WinRT: Disable native stylev5.5.0-alpha1
The style is not ready yet, hence we disable it by default. Task-number: QTBUG-44880 Change-Id: I24e2198ad13a4a3e3231508de105cc10b86e87dc Reviewed-by: Andrew Knight <qt@panimo.net>
-rw-r--r--src/controls/Private/qquickcontrolsettings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controls/Private/qquickcontrolsettings.cpp b/src/controls/Private/qquickcontrolsettings.cpp
index c60e77d95..0c76d8c4d 100644
--- a/src/controls/Private/qquickcontrolsettings.cpp
+++ b/src/controls/Private/qquickcontrolsettings.cpp
@@ -60,7 +60,7 @@ static QString defaultStyleName()
return QLatin1String("Android");
#elif defined(Q_OS_IOS)
return QLatin1String("iOS");
-#elif defined(Q_OS_WINRT)
+#elif defined(Q_OS_WINRT) && 0 // Enable once style is ready
return QLatin1String("WinRT");
#endif
return QLatin1String("Base");