aboutsummaryrefslogtreecommitdiff
path: root/room.cpp
diff options
context:
space:
mode:
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);
}