aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/bindings/compositesingleton.qml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/auto/bindings/compositesingleton.qml')
-rw-r--r--benchmarks/auto/bindings/compositesingleton.qml15
1 files changed, 0 insertions, 15 deletions
diff --git a/benchmarks/auto/bindings/compositesingleton.qml b/benchmarks/auto/bindings/compositesingleton.qml
deleted file mode 100644
index aad80cc..0000000
--- a/benchmarks/auto/bindings/compositesingleton.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-import QtQuick 2.0
-import QmlBench 1.0
-import "../../../shared"
-
-// Tests the creation of Items bound to a QML-defined singleton
-CreationBenchmark {
- id: root;
- count: 50;
- staticCount: 2500;
- delegate: Item {
- x: Globals.realProp
- y: Globals.intProp
- smooth: Globals.boolProp
- }
-}