aboutsummaryrefslogtreecommitdiff
path: root/events
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-03-04 14:44:06 +0900
committerGitHub <noreply@github.com>2018-03-04 14:44:06 +0900
commit5cdb186e067786eb53dd9b5e94bde8b12e672f44 (patch)
tree2b86e0520840fefa046306426c38dc82607ed7f3 /events
parent2e6585db10d905e4e7e93fc6765240789f43fdaa (diff)
parent4916c0b65f8415db1e189e7a9963fce71d3b8b71 (diff)
downloadlibquotient-5cdb186e067786eb53dd9b5e94bde8b12e672f44.tar.gz
libquotient-5cdb186e067786eb53dd9b5e94bde8b12e672f44.zip
Merge pull request #180 from Quiark/update_compiler
Making it compile for android
Diffstat (limited to 'events')
-rw-r--r--events/tagevent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/events/tagevent.cpp b/events/tagevent.cpp
index 886a10c6..c643ac62 100644
--- a/events/tagevent.cpp
+++ b/events/tagevent.cpp
@@ -44,7 +44,7 @@ QStringList TagEvent::tagNames() const
QHash<QString, TagRecord> TagEvent::tags() const
{
QHash<QString, TagRecord> result;
- auto allTags { tagsObject() };
+ auto allTags = tagsObject();
for (auto it = allTags.begin(); it != allTags.end(); ++ it)
result.insert(it.key(), TagRecord(it.value().toObject()));
return result;