aboutsummaryrefslogtreecommitdiff
path: root/qml
diff options
context:
space:
mode:
authorlink2xt <link2xt@testrun.org>2021-03-16 03:34:37 +0300
committerlink2xt <link2xt@testrun.org>2021-03-19 03:13:33 +0300
commit3158d4ce95cf8e8a1884cf795de41bee16bef3d5 (patch)
treecfb4c5dd44403617adf33fa8044d90e69a1fe6a5 /qml
parentbb9cf9564f9933928ded677809ccd8f9b0980d12 (diff)
downloadkdeltachat-3158d4ce95cf8e8a1884cf795de41bee16bef3d5.tar.gz
kdeltachat-3158d4ce95cf8e8a1884cf795de41bee16bef3d5.zip
Fix some qmllint warnings
Diffstat (limited to 'qml')
-rw-r--r--qml/ChatPage.qml8
-rw-r--r--qml/Message.qml2
2 files changed, 5 insertions, 5 deletions
diff --git a/qml/ChatPage.qml b/qml/ChatPage.qml
index 4496954..e084efe 100644
--- a/qml/ChatPage.qml
+++ b/qml/ChatPage.qml
@@ -65,20 +65,20 @@ Kirigami.ScrollablePage {
console.log("Incoming message for chat " + chatId)
if (chatId == chatPage.chatId) {
- updateMessagelist()
+ chatPage.updateMessagelist()
}
}
function onMessagesChanged(accountId, chatId, msgId) {
console.log("Messages changed for chat " + chatId)
if (chatId == chatPage.chatId) {
- updateMessagelist()
+ chatPage.updateMessagelist()
}
}
}
Component.onCompleted: {
- updateMessagelist()
+ chatPage.updateMessagelist()
}
background: Rectangle {
@@ -111,7 +111,7 @@ Kirigami.ScrollablePage {
text: qsTr("Send")
enabled: messageField.length > 0
onClicked: {
- context.sendTextMessage(chatId, messageField.text)
+ chatPage.context.sendTextMessage(chatPage.chatId, messageField.text)
messageField.text = ""
}
}
diff --git a/qml/Message.qml b/qml/Message.qml
index 7e12996..2c67cff 100644
--- a/qml/Message.qml
+++ b/qml/Message.qml
@@ -132,7 +132,7 @@ RowLayout {
spacing: Kirigami.Units.smallSpacing
Rectangle {
width: Kirigami.Units.smallSpacing
- color: quoteFrom ? quoteFrom.color : "black"
+ color: messageObject.quoteFrom ? messageObject.quoteFrom.color : "black"
Layout.fillHeight: true
}
TextEdit {