aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/quick.text/delegates_text_decoration_underline.qml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/auto/creation/quick.text/delegates_text_decoration_underline.qml')
-rw-r--r--benchmarks/auto/creation/quick.text/delegates_text_decoration_underline.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/benchmarks/auto/creation/quick.text/delegates_text_decoration_underline.qml b/benchmarks/auto/creation/quick.text/delegates_text_decoration_underline.qml
deleted file mode 100644
index e61efe1..0000000
--- a/benchmarks/auto/creation/quick.text/delegates_text_decoration_underline.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import QtQuick 2.0
-import QmlBench 1.0
-
-// Tests the creation of Text with underline decoration
-CreationBenchmark {
- id: root;
- count: 50;
- staticCount: 1000;
- delegate: Text {
- x: QmlBench.getRandom() * (root.width - width)
- y: QmlBench.getRandom() * (root.height - height)
- text: "Qt Quick!"
- font.pixelSize: 10
- font.underline: true
- textFormat: Text.PlainText
- }
-}
-