From 8ad8a74152c5701b6ca1f9a00487ba9257a439b4 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Thu, 6 Dec 2018 20:57:37 +0900 Subject: Avoid Omittable<>::operator bool It was accidentally (and incorrectly) used in tags sorting code; will be dropped in versions after 0.4.x. --- lib/connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/connection.cpp b/lib/connection.cpp index df9fb112..6bdedf26 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -831,7 +831,7 @@ QHash> Connection::tagsToRooms() const for (auto it = result.begin(); it != result.end(); ++it) std::sort(it->begin(), it->end(), [t=it.key()] (Room* r1, Room* r2) { - return r1->tags().value(t).order < r2->tags().value(t).order; + return r1->tags().value(t) < r2->tags().value(t); }); return result; } -- cgit v1.2.3