diff options
author | link2xt <link2xt@testrun.org> | 2021-03-18 01:09:41 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-03-19 03:13:33 +0300 |
commit | 99ece5f196422d0028b03f17244d643ffd7fc976 (patch) | |
tree | 7674d33102e5014f5c271bb87bccd19e33b39947 /qml/Message.qml | |
parent | 1b79a5d06f02035db165b7a2c294df1006a503ed (diff) | |
download | kdeltachat-99ece5f196422d0028b03f17244d643ffd7fc976.tar.gz kdeltachat-99ece5f196422d0028b03f17244d643ffd7fc976.zip |
Fix some `qmllint -U` warnings
Diffstat (limited to 'qml/Message.qml')
-rw-r--r-- | qml/Message.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qml/Message.qml b/qml/Message.qml index 6fc0318..5d535f4 100644 --- a/qml/Message.qml +++ b/qml/Message.qml @@ -93,11 +93,11 @@ RowLayout { anchors.fill: parent acceptedButtons: Qt.LeftButton | Qt.RightButton - onClicked: { + onClicked: function(mouse) { if (mouse.button === Qt.RightButton) contextMenu.popup() } - onPressAndHold: { + onPressAndHold: function(mouse) { if (mouse.source === Qt.MouseEventNotSynthesized) contextMenu.popup() } @@ -105,7 +105,7 @@ RowLayout { MessageDialog { id: messageDialog title: "Message info" - text: context.getMessageInfo(messageObject.message.id) + text: messageObject.context.getMessageInfo(messageObject.message.id) onAccepted: { } } @@ -117,7 +117,7 @@ RowLayout { } Action { text: "Start chat" - onTriggered: context.decideOnContactRequest(message.id, 0) + onTriggered: messageObject.context.decideOnContactRequest(messageObject.message.id, 0) } } } |