Use toMSecsSinceEpoch
to be compatible with qt < 5.8
This commit is contained in:
parent
208f957911
commit
5e0fbe87a0
@ -328,7 +328,7 @@ RoomList::sortRoomsByLastMessage()
|
||||
if (room->lastMessageInfo().userid.isEmpty())
|
||||
times.emplace(0, room);
|
||||
else
|
||||
times.emplace(room->lastMessageInfo().datetime.toSecsSinceEpoch(), room);
|
||||
times.emplace(room->lastMessageInfo().datetime.toMSecsSinceEpoch(), room);
|
||||
}
|
||||
|
||||
for (auto it = times.cbegin(); it != times.cend(); ++it) {
|
||||
|
Loading…
Reference in New Issue
Block a user