aboutsummaryrefslogtreecommitdiff
path: root/events
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-25 09:17:39 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-25 09:17:39 +0900
commita4a1129385731c3999a6d5986a24fc069938245c (patch)
treed6e713c4414497d0ff7527eaff5e917d18296d82 /events
parent997a1c879f853606deb47c75c4735779a2f37189 (diff)
downloadlibquotient-a4a1129385731c3999a6d5986a24fc069938245c.tar.gz
libquotient-a4a1129385731c3999a6d5986a24fc069938245c.zip
ReceiptEvent: use QVector instead of std::vector
Because we should practice what we preach in CONTRIBUTING.md.
Diffstat (limited to 'events')
-rw-r--r--events/receiptevent.cpp6
-rw-r--r--events/receiptevent.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/events/receiptevent.cpp b/events/receiptevent.cpp
index b36ddb23..e30fe4e4 100644
--- a/events/receiptevent.cpp
+++ b/events/receiptevent.cpp
@@ -56,15 +56,15 @@ ReceiptEvent::ReceiptEvent(const QJsonObject& obj)
continue;
}
const QJsonObject reads = eventIt.value().toObject().value("m.read").toObject();
- std::vector<Receipt> receipts;
- receipts.reserve(static_cast<size_t>(reads.size()));
+ QVector<Receipt> receipts;
+ receipts.reserve(reads.size());
for( auto userIt = reads.begin(); userIt != reads.end(); ++userIt )
{
const QJsonObject user = userIt.value().toObject();
receipts.push_back({userIt.key(),
QMatrixClient::fromJson<QDateTime>(user["ts"])});
}
- _eventsWithReceipts.push_back({eventIt.key(), receipts});
+ _eventsWithReceipts.push_back({eventIt.key(), std::move(receipts)});
}
static const auto UnreadMsgsKey =
QStringLiteral("x-qmatrixclient.unread_messages");
diff --git a/events/receiptevent.h b/events/receiptevent.h
index 15fdf946..9494c7c6 100644
--- a/events/receiptevent.h
+++ b/events/receiptevent.h
@@ -30,9 +30,9 @@ namespace QMatrixClient
struct ReceiptsForEvent
{
QString evtId;
- std::vector<Receipt> receipts;
+ QVector<Receipt> receipts;
};
- using EventsWithReceipts = std::vector<ReceiptsForEvent>;
+ using EventsWithReceipts = QVector<ReceiptsForEvent>;
class ReceiptEvent: public Event
{