aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/qml.modelaccess/modelaccess_color.qml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/auto/creation/qml.modelaccess/modelaccess_color.qml')
-rw-r--r--benchmarks/auto/creation/qml.modelaccess/modelaccess_color.qml24
1 files changed, 0 insertions, 24 deletions
diff --git a/benchmarks/auto/creation/qml.modelaccess/modelaccess_color.qml b/benchmarks/auto/creation/qml.modelaccess/modelaccess_color.qml
deleted file mode 100644
index 65cdd4f..0000000
--- a/benchmarks/auto/creation/qml.modelaccess/modelaccess_color.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import QtQuick 2.0
-import QmlBench 1.0
-
-// Tests access of color properties from a C++ model
-Benchmark {
- id: root;
- count: 50
- staticCount: 2500
-
- onTChanged: {
- testModel.rowNumber = 0
- testModel.rowNumber = root.count
- }
-
- Repeater {
- model: TestModel {
- id: testModel
- }
- delegate: Item {
- property color value: model.colorRole
- }
- }
-}
-