aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml b/tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml
deleted file mode 100644
index e7c5bc1b10..0000000000
--- a/tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-import QtQuick 1.0
-import "../shared" 1.0
-
-TextEdit {
- id: edit
- FontLoader { id: fixedFont; source: "DejaVuSansMono.ttf" }
- font.family: fixedFont.name
- font.pixelSize: 12
- cursorDelegate: Rectangle {
- width: 1;
- color: "black";
- visible: edit.cursorVisible
- }
-}