From ffb1f978c377e0442bed9eab17727932d59fc55a Mon Sep 17 00:00:00 2001 From: Alexey Rusakov Date: Sun, 21 Nov 2021 12:24:11 +0100 Subject: Log the hexadecimal value of Changes too, just in case --- lib/room.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/room.cpp b/lib/room.cpp index 8bad9084..c166254e 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -1814,7 +1814,11 @@ void Room::Private::postprocessChanges(Changes changes, bool saveState) if (changes & Change::Highlights) emit q->highlightCountChanged(); - qCDebug(MAIN) << terse << changes << "in" << q->objectName(); + qCDebug(MAIN) << terse << changes << "= hex" << +#if QT_VERSION >= QT_VERSION_CHECK(5, 14, 0) + Qt:: +#endif + hex << uint(changes) << "in" << q->objectName(); emit q->changed(changes); if (saveState) connection->saveRoomState(q); -- cgit v1.2.3