Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamila <hello@camila.codes>2022-03-25 22:02:42 +0300
committerCamila <hello@camila.codes>2022-03-28 17:04:54 +0300
commit9b00e5268e8abbdcbca0da03b308fb2b6f70a849 (patch)
treedfa074d2c90bc29e1178d00b11fdfb9af0a666ed /src/gui/tray/usermodel.cpp
parenta46482ca9170a1f33e62ddffbb874d41cfd3e1ea (diff)
Rename functions.
Signed-off-by: Camila <hello@camila.codes>
Diffstat (limited to 'src/gui/tray/usermodel.cpp')
-rw-r--r--src/gui/tray/usermodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/tray/usermodel.cpp b/src/gui/tray/usermodel.cpp
index 41590bf06..16d3c8263 100644
--- a/src/gui/tray/usermodel.cpp
+++ b/src/gui/tray/usermodel.cpp
@@ -798,7 +798,7 @@ void User::slotSendReplyMessage(const int activityIndex, const QString &token, c
QPointer<TalkReply> talkReply = new TalkReply(_account.data(), this);
talkReply->sendReplyMessage(token, message, replyTo);
connect(talkReply, &TalkReply::replyMessageSent, this, [&](const QString &message) {
- _activityModel->replyMessageSent(activityIndex, message);
+ _activityModel->setReplyMessageSent(activityIndex, message);
});
}