From c25bface8e20b472d1e50a82fdd85f7cda001f7e Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Wed, 28 Oct 2009 18:03:16 +1000 Subject: Add missing file Task-number: QT-2401 --- tests/auto/declarative/qfxtextinput/data/cursorTest.qml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/auto/declarative/qfxtextinput/data/cursorTest.qml diff --git a/tests/auto/declarative/qfxtextinput/data/cursorTest.qml b/tests/auto/declarative/qfxtextinput/data/cursorTest.qml new file mode 100644 index 0000000..ddc98cc --- /dev/null +++ b/tests/auto/declarative/qfxtextinput/data/cursorTest.qml @@ -0,0 +1,8 @@ +import Qt 4.6 + +Rectangle { width: 300; height: 300; color: "white" + TextInput { text: "Hello world!"; id: textInputObject; objectName: "textInputObject" + resources: [ Component { id:cursor; Item { id:cursorInstance; objectName: "cursorInstance";} } ] + cursorDelegate: cursor + } +} -- cgit v0.12