aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tutorials
diff options
context:
space:
mode:
authorJoona Petrell <joona.t.petrell@nokia.com>2012-08-22 00:09:55 +0300
committerQt by Nokia <qt-info@nokia.com>2012-08-22 04:05:05 +0200
commitf247405bc04caf73f54458a70b37d0434f9eacdd (patch)
tree4a91474b92110bd348d529c97806159d91c997db /examples/tutorials
parente75a96a920fb867fbe698e1aeb5a292a0ea35b8b (diff)
Remove deprecated openSoftwareInputPanel function calls from the declarative examples
Change-Id: I458bb1ed08f587b13a52a2615ba4d7966363a12b Reviewed-by: Andrew den Exter <andrew.den-exter@nokia.com>
Diffstat (limited to 'examples/tutorials')
-rw-r--r--examples/tutorials/samegame/samegame4/content/Dialog.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tutorials/samegame/samegame4/content/Dialog.qml b/examples/tutorials/samegame/samegame4/content/Dialog.qml
index 984b3ddb6a..a9a3560a77 100644
--- a/examples/tutorials/samegame/samegame4/content/Dialog.qml
+++ b/examples/tutorials/samegame/samegame4/content/Dialog.qml
@@ -96,7 +96,7 @@ Rectangle {
onClicked: {
if (textInput.text == "" && textInput.opacity > 0)
- textInput.openSoftwareInputPanel();
+ Qt.inputMethod.show();
else
hide();
}