aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativetextedit/data/cursorTest.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativetextedit/data/cursorTest.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativetextedit/data/cursorTest.qml9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/auto/qtquick1/qdeclarativetextedit/data/cursorTest.qml b/tests/auto/qtquick1/qdeclarativetextedit/data/cursorTest.qml
deleted file mode 100644
index f7fb3e7ced..0000000000
--- a/tests/auto/qtquick1/qdeclarativetextedit/data/cursorTest.qml
+++ /dev/null
@@ -1,9 +0,0 @@
-import QtQuick 1.0
-
-Rectangle { width: 300; height: 300; color: "white"
- TextEdit { text: "Hello world!"; id: textEditObject; objectName: "textEditObject"
- anchors.fill: parent
- resources: [ Component { id:cursor; Item { id:cursorInstance; objectName: "cursorInstance" } } ]
- cursorDelegate: cursor
- }
-}