mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 06:55:59 +03:00
Rename functions.
Signed-off-by: Camila <hello@camila.codes>
This commit is contained in:
parent
a46482ca91
commit
9b00e5268e
4 changed files with 6 additions and 6 deletions
|
@ -11,7 +11,7 @@ Item {
|
||||||
target: activityModel
|
target: activityModel
|
||||||
function onMessageSent() {
|
function onMessageSent() {
|
||||||
replyMessageTextField.clear();
|
replyMessageTextField.clear();
|
||||||
replyMessageSent.text = activityModel.talkReplyMessageSent(model.index);
|
replyMessageSent.text = activityModel.replyMessageSent(model.index);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -817,7 +817,7 @@ void ActivityListModel::slotRemoveAccount()
|
||||||
_showMoreActivitiesAvailableEntry = false;
|
_showMoreActivitiesAvailableEntry = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ActivityListModel::replyMessageSent(const int activityIndex, const QString &message)
|
void ActivityListModel::setReplyMessageSent(const int activityIndex, const QString &message)
|
||||||
{
|
{
|
||||||
if (activityIndex < 0 || activityIndex >= _finalList.size()) {
|
if (activityIndex < 0 || activityIndex >= _finalList.size()) {
|
||||||
qCWarning(lcActivity) << "Couldn't trigger action on activity at index" << activityIndex << "/ final list size:" << _finalList.size();
|
qCWarning(lcActivity) << "Couldn't trigger action on activity at index" << activityIndex << "/ final list size:" << _finalList.size();
|
||||||
|
@ -829,7 +829,7 @@ void ActivityListModel::replyMessageSent(const int activityIndex, const QString
|
||||||
emit messageSent();
|
emit messageSent();
|
||||||
}
|
}
|
||||||
|
|
||||||
QString ActivityListModel::talkReplyMessageSent(const int activityIndex) const
|
QString ActivityListModel::replyMessageSent(const int activityIndex) const
|
||||||
{
|
{
|
||||||
if (activityIndex < 0 || activityIndex >= _finalList.size()) {
|
if (activityIndex < 0 || activityIndex >= _finalList.size()) {
|
||||||
qCWarning(lcActivity) << "Couldn't trigger action on activity at index" << activityIndex << "/ final list size:" << _finalList.size();
|
qCWarning(lcActivity) << "Couldn't trigger action on activity at index" << activityIndex << "/ final list size:" << _finalList.size();
|
||||||
|
|
|
@ -106,8 +106,8 @@ public:
|
||||||
|
|
||||||
void setCurrentItem(const int currentItem);
|
void setCurrentItem(const int currentItem);
|
||||||
|
|
||||||
void replyMessageSent(const int activityIndex, const QString &message);
|
void setReplyMessageSent(const int activityIndex, const QString &message);
|
||||||
Q_INVOKABLE QString talkReplyMessageSent(const int activityIndex) const;
|
Q_INVOKABLE QString replyMessageSent(const int activityIndex) const;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void slotRefreshActivity();
|
void slotRefreshActivity();
|
||||||
|
|
|
@ -798,7 +798,7 @@ void User::slotSendReplyMessage(const int activityIndex, const QString &token, c
|
||||||
QPointer<TalkReply> talkReply = new TalkReply(_account.data(), this);
|
QPointer<TalkReply> talkReply = new TalkReply(_account.data(), this);
|
||||||
talkReply->sendReplyMessage(token, message, replyTo);
|
talkReply->sendReplyMessage(token, message, replyTo);
|
||||||
connect(talkReply, &TalkReply::replyMessageSent, this, [&](const QString &message) {
|
connect(talkReply, &TalkReply::replyMessageSent, this, [&](const QString &message) {
|
||||||
_activityModel->replyMessageSent(activityIndex, message);
|
_activityModel->setReplyMessageSent(activityIndex, message);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue