diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2010-02-05 03:27:54 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2010-02-05 03:27:54 (GMT) |
commit | e974be0e2b122fc709343e5218c77593fb0cec9d (patch) | |
tree | 067f182dea26b0afa093eee2923d9e20d74758a9 /tests/auto/declarative/qmlgraphicstextinput | |
parent | 844905c4c689762136eec42898496c7d850ccdab (diff) | |
download | Qt-e974be0e2b122fc709343e5218c77593fb0cec9d.zip Qt-e974be0e2b122fc709343e5218c77593fb0cec9d.tar.gz Qt-e974be0e2b122fc709343e5218c77593fb0cec9d.tar.bz2 |
Test fixes.
Diffstat (limited to 'tests/auto/declarative/qmlgraphicstextinput')
-rw-r--r-- | tests/auto/declarative/qmlgraphicstextinput/data/navigation.qml | 4 | ||||
-rw-r--r-- | tests/auto/declarative/qmlgraphicstextinput/data/readOnly.qml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/declarative/qmlgraphicstextinput/data/navigation.qml b/tests/auto/declarative/qmlgraphicstextinput/data/navigation.qml index 637de3a..7a2e914 100644 --- a/tests/auto/declarative/qmlgraphicstextinput/data/navigation.qml +++ b/tests/auto/declarative/qmlgraphicstextinput/data/navigation.qml @@ -1,7 +1,7 @@ import Qt 4.6 Rectangle { - property var myinput: input + property var myInput: input width: 800; height: 600; color: "blue" @@ -10,7 +10,7 @@ Rectangle { KeyNavigation.right: input } - Textinput { id: input; focus: true + TextInput { id: input; focus: true KeyNavigation.left: firstItem KeyNavigation.right: lastItem KeyNavigation.up: firstItem 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" } |