aboutsummaryrefslogtreecommitdiff
path: root/room.cpp
diff options
context:
space:
mode:
authorFelix Rohrbach <fxrh@gmx.de>2016-08-23 18:35:40 +0200
committerGitHub <noreply@github.com>2016-08-23 18:35:40 +0200
commit77d45e9afa195f7d715a5074b16f16c6b2d15235 (patch)
treeb8c9f1d73e0eba48cc55194b06bbbeb97bc4e258 /room.cpp
parentda52097f1c90d7286aff27a84fc14b6b0793ff97 (diff)
parentfb6df81fa9f224c94118fd79fea91ae15559c7e3 (diff)
downloadlibquotient-77d45e9afa195f7d715a5074b16f16c6b2d15235.tar.gz
libquotient-77d45e9afa195f7d715a5074b16f16c6b2d15235.zip
Merge pull request #18 from Fxrh/kitsune-use-qvector-with-nonpointers
Replaced QList<> with QVector<> where appropriate + minor code cleanup
Diffstat (limited to 'room.cpp')
-rw-r--r--room.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/room.cpp b/room.cpp
index 1513cbeb..768a0dac 100644
--- a/room.cpp
+++ b/room.cpp
@@ -482,11 +482,11 @@ void Room::processEphemeralEvent(Event* event)
}
if( event->type() == EventType::Receipt )
{
- ReceiptEvent* receiptEvent = static_cast<ReceiptEvent*>(event);
+ auto receiptEvent = static_cast<ReceiptEvent*>(event);
for( QString eventId: receiptEvent->events() )
{
- QList<Receipt> receipts = receiptEvent->receiptsForEvent(eventId);
- for( Receipt r: receipts )
+ const auto receipts = receiptEvent->receiptsForEvent(eventId);
+ for( const Receipt r: receipts )
{
d->lastReadEvent.insert(d->connection->user(r.userId), eventId);
}