summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlgraphicstextinput/data
diff options
context:
space:
mode:
authorJoona Petrell <joona.t.petrell@nokia.com>2010-02-12 04:12:04 (GMT)
committerJoona Petrell <joona.t.petrell@nokia.com>2010-02-12 04:12:04 (GMT)
commit697f8f9921701a5da3ef8a97c97f33ade1db8ecf (patch)
tree8ae25c8391b9422dfacd6cb10f1339e8f4e02556 /tests/auto/declarative/qmlgraphicstextinput/data
parent3aa16c105b7f9e55e804ee6bbb738dd267e484f2 (diff)
downloadQt-697f8f9921701a5da3ef8a97c97f33ade1db8ecf.zip
Qt-697f8f9921701a5da3ef8a97c97f33ade1db8ecf.tar.gz
Qt-697f8f9921701a5da3ef8a97c97f33ade1db8ecf.tar.bz2
Adds inputMethodHint property to TextEdit and TextInput.
Reviewed-by: Martin Jones
Diffstat (limited to 'tests/auto/declarative/qmlgraphicstextinput/data')
-rw-r--r--tests/auto/declarative/qmlgraphicstextinput/data/inputmethodhints.qml6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/declarative/qmlgraphicstextinput/data/inputmethodhints.qml b/tests/auto/declarative/qmlgraphicstextinput/data/inputmethodhints.qml
new file mode 100644
index 0000000..b404682
--- /dev/null
+++ b/tests/auto/declarative/qmlgraphicstextinput/data/inputmethodhints.qml
@@ -0,0 +1,6 @@
+import Qt 4.6
+
+TextInput {
+ text: "Hello world!"
+ inputMethodHints: Qt.ImhNoPredictiveText
+}