summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml')
-rw-r--r--tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml b/tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml
index 886da0c..c47371a 100644
--- a/tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml
+++ b/tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml
@@ -1,11 +1,11 @@
import Qt 4.6
Rectangle {
- property var myinput: input
+ property var myInput: input
width: 800; height: 600; color: "blue"
- Textinput { id: input; focus: true
+ TextInput { id: input; focus: true
readOnly: true
text: "I am the very model of a modern major general.\n"
}