summaryrefslogtreecommitdiffstats
path: root/qml/touch/TouchTextField.qml
diff options
context:
space:
mode:
authorJan Arve Saether <jan-arve.saether@theqtcompany.com>2014-10-28 15:14:39 +0100
committerFrederik Gladhorn <frederik.gladhorn@theqtcompany.com>2014-10-28 16:39:53 +0100
commitc8d169fd209a1cf1fad2af8113b24757de344494 (patch)
tree1b3d94771b598e721c7da4528f1a1399c6c0082a /qml/touch/TouchTextField.qml
parentad99ecba52bc835c4391809202a6d96bb708b065 (diff)
"function accessiblePressAction()" => "Accessible.onPressAction:"
Change-Id: Ic9f8bdf531845a77e43cf526eb9256b85787da5b Reviewed-by: Frederik Gladhorn <frederik.gladhorn@theqtcompany.com>
Diffstat (limited to 'qml/touch/TouchTextField.qml')
-rw-r--r--qml/touch/TouchTextField.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/qml/touch/TouchTextField.qml b/qml/touch/TouchTextField.qml
index b3d794b..9ecdce8 100644
--- a/qml/touch/TouchTextField.qml
+++ b/qml/touch/TouchTextField.qml
@@ -103,7 +103,7 @@ TextField {
width: parent.height
Accessible.role: Accessible.Button
Accessible.name: qsTr("Clear")
- function accessiblePressAction() {
+ Accessible.onPressAction: {
textfield.clearButtonClicked()
}