diff options
author | Joona Petrell <joona.t.petrell@nokia.com> | 2010-02-12 04:12:04 (GMT) |
---|---|---|
committer | Joona Petrell <joona.t.petrell@nokia.com> | 2010-02-12 04:12:04 (GMT) |
commit | 697f8f9921701a5da3ef8a97c97f33ade1db8ecf (patch) | |
tree | 8ae25c8391b9422dfacd6cb10f1339e8f4e02556 /tests/auto/declarative/qmlgraphicstextinput/data | |
parent | 3aa16c105b7f9e55e804ee6bbb738dd267e484f2 (diff) | |
download | Qt-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.qml | 6 |
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 +} |