aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-03-30 09:45:44 +0200
committerJari-Pekka Nurmi <jpnurmi@theqtcompany.com>2015-03-30 10:48:31 +0300
commit1c0edf002a50a765a66349d733cf170f4a4024ef (patch)
treec77e5ad7f80d5572e6b92e35e2e267597a37d124 /tests/benchmarks
parent3762fa3f0cfe1a1d24b080327cf232534f98f491 (diff)
Remove SpinBox
SpinBox is a desktop centric control. It won't be provided in Qt Quick Controls 2.0, but maybe later when desktop support is re-considered. Qt Quick Controls 2.0 will focus on embedded and mobile. SpinBox is still available in 1.x Change-Id: I272b030734bad58de7e5b26c522189e0c520fca5 Reviewed-by: Jari-Pekka Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'tests/benchmarks')
-rw-r--r--tests/benchmarks/creation/tst_creation.cpp1
-rw-r--r--tests/benchmarks/objects/tst_objects.cpp4
2 files changed, 0 insertions, 5 deletions
diff --git a/tests/benchmarks/creation/tst_creation.cpp b/tests/benchmarks/creation/tst_creation.cpp
index 3fbbf3c3..0f542ab9 100644
--- a/tests/benchmarks/creation/tst_creation.cpp
+++ b/tests/benchmarks/creation/tst_creation.cpp
@@ -105,7 +105,6 @@ void tst_Creation::testControls_data()
QTest::newRow("ScrollIndicator") << QByteArray("ScrollIndicator");
#endif
QTest::newRow("Slider") << QByteArray("Slider");
- QTest::newRow("SpinBox") << QByteArray("SpinBox");
QTest::newRow("Switch") << QByteArray("Switch");
#ifndef QT_QUICK_CONTROLS_V1
QTest::newRow("TabBar") << QByteArray("TabBar");
diff --git a/tests/benchmarks/objects/tst_objects.cpp b/tests/benchmarks/objects/tst_objects.cpp
index b798cc01..96f97bd9 100644
--- a/tests/benchmarks/objects/tst_objects.cpp
+++ b/tests/benchmarks/objects/tst_objects.cpp
@@ -185,10 +185,6 @@ void tst_Objects::testCount_data()
<< QByteArray("import QtQuick.Controls 1.3; Slider { }")
<< QByteArray("import QtQuick.Controls 2.0; Slider { }");
- QTest::newRow("SpinBox")
- << QByteArray("import QtQuick.Controls 1.3; SpinBox { }")
- << QByteArray("import QtQuick.Controls 2.0; SpinBox { }");
-
QTest::newRow("StackView")
<< QByteArray("import QtQuick.Controls 1.3; StackView { }")
<< QByteArray("import QtQuick.Controls 2.0; StackView { }");