[network/ruqola] src/widgets/room: Remove unused std::move
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit b559bed6c89809aee8d545d65d9ec9cb54f29da2 by Laurent Montel.
Committed on 29/07/2026 at 21:06.
Pushed by mlaurent into branch 'master'.
Remove unused std::move
M +1 -1 src/widgets/room/messagelistview.cpp
https://invent.kde.org/network/ruqola/-/commit/b559bed6c89809aee8d545d65d9ec9cb54f29da2
diff --git a/src/widgets/room/messagelistview.cpp b/src/widgets/room/messagelistview.cpp
index 2df9afeb90..781320df6b 100644
--- a/src/widgets/room/messagelistview.cpp
+++ b/src/widgets/room/messagelistview.cpp
@@ -693,7 +693,7 @@ void MessageListView::contextMenuEvent(QContextMenuEvent *event)
connect(job, &RocketChatRestApi::ModerationReportsJob::moderationReportsDone, this, [this](const QJsonObject &obj) {
ModerationReportInfos infos;
infos.parseModerationReportInfos(obj);
- slotShowReportInfo(std::move(infos));
+ slotShowReportInfo(infos);
});
if (!job->start()) {
qCWarning(RUQOLAWIDGETS_LOG) << "Impossible to start ModerationReportInfoJob job";