[network/ruqola] src/widgets/room: Remove std::move
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 5319548766c5b9f7892f9f68635536c1baa9f9b8 by Laurent Montel.
Committed on 29/07/2026 at 21:08.
Pushed by mlaurent into branch 'master'.
Remove std::move
M +1 -1 src/widgets/room/messagelistview.cpp
https://invent.kde.org/network/ruqola/-/commit/5319548766c5b9f7892f9f68635536c1baa9f9b8
diff --git a/src/widgets/room/messagelistview.cpp b/src/widgets/room/messagelistview.cpp
index 781320df6b..7fca584552 100644
--- a/src/widgets/room/messagelistview.cpp
+++ b/src/widgets/room/messagelistview.cpp
@@ -1246,7 +1246,7 @@ void MessageListView::slotTranslate([[maybe_unused]] const QString &from,
void MessageListView::slotShowReportInfo(const ModerationReportInfos &info)
{
ModerationMessageInfoDialog dlg(mCurrentRocketChatAccount, this);
- dlg.setReportInfos(std::move(info));
+ dlg.setReportInfos(info);
dlg.exec();
}
#include "moc_messagelistview.cpp"