aboutsummaryrefslogtreecommitdiff
path: root/lib/room.cpp
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-06-18 21:26:43 +0200
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-06-18 21:26:43 +0200
commit6b355d1aa87072143e09ea5269e8cf465318a64f (patch)
tree5de8b227d319e8c677ef4ea3d7931233a808bd5a /lib/room.cpp
parent2dd85770cbfd6d9c7506757f25765c05ef74987d (diff)
downloadlibquotient-6b355d1aa87072143e09ea5269e8cf465318a64f.tar.gz
libquotient-6b355d1aa87072143e09ea5269e8cf465318a64f.zip
Drop pre-Qt 5.15 code
Diffstat (limited to 'lib/room.cpp')
-rw-r--r--lib/room.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/room.cpp b/lib/room.cpp
index f692c354..e07de123 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -1974,11 +1974,8 @@ void Room::Private::postprocessChanges(Changes changes, bool saveState)
if (changes & Change::Highlights)
emit q->highlightCountChanged();
- qCDebug(MAIN) << terse << changes << "= hex" <<
-#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0)
- Qt::
-#endif
- hex << uint(changes) << "in" << q->objectName();
+ qCDebug(MAIN) << terse << changes << "= hex" << Qt::hex << uint(changes)
+ << "in" << q->objectName();
emit q->changed(changes);
if (saveState)
connection->saveRoomState(q);