summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2016-04-21 23:18:49 +0200
committerJ-P Nurmi <jpnurmi@qt.io>2016-04-22 06:31:23 +0000
commit3411c3579fb9e767c819c0c8d9f35c52c9964b06 (patch)
treebb59e29289d4f4c88f92ccae9f0e9b63acb26aab /examples
parent2ee6ef43d681746d07c1175738184715ce0d84e4 (diff)
downloadqtquickcontrols-3411c3579fb9e767c819c0c8d9f35c52c9964b06.tar.gz
Add support for QT_QUICK_CONTROLS_1_STYLE
Takes priority over QT_QUICK_CONTROLS_STYLE to allow specifying system wide style name preferences separately for Qt Quick Controls 1 and 2. [ChangeLog][Controls] Added support for a QT_QUICK_CONTROLS_1_STYLE environment variable, which takes priority over the existing variable QT_QUICK_CONTROLS_STYLE. This allows specifying system wide style name preferences separately for Qt Quick Controls 1 and 2. Change-Id: I0e40c2790c24b7ef66b1995b8337e573bb2f75a2 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/quick/extras/flat/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/quick/extras/flat/main.cpp b/examples/quick/extras/flat/main.cpp
index a061d90b..dd90f807 100644
--- a/examples/quick/extras/flat/main.cpp
+++ b/examples/quick/extras/flat/main.cpp
@@ -56,8 +56,8 @@
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
- if (qgetenv("QT_QUICK_CONTROLS_STYLE").isEmpty()) {
- qputenv("QT_QUICK_CONTROLS_STYLE", "Flat");
+ if (qgetenv("QT_QUICK_CONTROLS_1_STYLE").isEmpty()) {
+ qputenv("QT_QUICK_CONTROLS_1_STYLE", "Flat");
}
QQmlApplicationEngine engine;
engine.load(QUrl("qrc:/main.qml"));