aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-11-27 22:29:11 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-11-27 22:29:11 +0100
commit102ed8b661e6ca66d754de0d102713d930fb224d (patch)
treef538ecf494fe15be720872056f27af093376b57b /lib
parent0425fd280e7eee7a4c9bcf18f79910f181322c42 (diff)
downloadlibquotient-102ed8b661e6ca66d754de0d102713d930fb224d.tar.gz
libquotient-102ed8b661e6ca66d754de0d102713d930fb224d.zip
Code cleanup
Diffstat (limited to 'lib')
-rw-r--r--lib/room.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/room.cpp b/lib/room.cpp
index 8f430ccd..6e6d7f11 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -228,12 +228,11 @@ public:
QVector<const StateEventBase*> stateEventsOfType(const QString& evtType) const
{
- QVector<const StateEventBase*> vals = QVector<const StateEventBase*>();
- for (const auto* val : currentState) {
- if (val->matrixType() == evtType) {
- vals.append(val);
- }
- }
+ auto vals = QVector<const StateEventBase*>();
+ for (auto it = currentState.cbegin(); it != currentState.cend(); ++it)
+ if (it.key().first == evtType)
+ vals.append(it.value());
+
return vals;
}