aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-12-15 10:16:17 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-12-15 12:14:14 +0000
commit5f215fcdd3715a0c7f74b189610b6222da3c9cd8 (patch)
tree3bc9083ba02ed6f8b3f99bf803d1ae4a245e7cb7 /tests
parent966e45513a6f7e568b9f4ac93a01723742b50a84 (diff)
testbench: fix the comment about use qputenv()
Refer to qputenv() instead of qsetenv(), and remove the mention of QT_QUICK_FILE_SELECTORS that is no longer supported. Change-Id: Ifada695afb1815e3b709d147250d297915550c16 Task-number: QTBUG-49891 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/testbench/main.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/manual/testbench/main.cpp b/tests/manual/testbench/main.cpp
index b6eec8d8..e0f975fe 100644
--- a/tests/manual/testbench/main.cpp
+++ b/tests/manual/testbench/main.cpp
@@ -52,8 +52,7 @@ int main(int argc, char *argv[])
// These must be set before running.
// TODO: move style selection into app UI and use settings to save choices.
- // qsetenv("QT_QUICK_FILE_SELECTORS", "material");
- // qsetenv("QT_LABS_CONTROLS_STYLE", "material");
+ // qputenv("QT_LABS_CONTROLS_STYLE", "material");
QQmlApplicationEngine engine;
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));