aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/quick/delegates_listview.qml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/auto/creation/quick/delegates_listview.qml')
-rw-r--r--benchmarks/auto/creation/quick/delegates_listview.qml17
1 files changed, 0 insertions, 17 deletions
diff --git a/benchmarks/auto/creation/quick/delegates_listview.qml b/benchmarks/auto/creation/quick/delegates_listview.qml
deleted file mode 100644
index 413bbb2..0000000
--- a/benchmarks/auto/creation/quick/delegates_listview.qml
+++ /dev/null
@@ -1,17 +0,0 @@
-import QtQuick 2.0
-import QmlBench 1.0
-
-// Tests the creation of ListView with a few simple props.
-CreationBenchmark {
- id: root;
- count: 50
- staticCount: 2500
- delegate: ListView {
- x: QmlBench.getRandom() * (root.width - width)
- y: QmlBench.getRandom() * (root.height - height)
- width: 30
- height: 15
- }
-}
-
-