X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatview.cpp;fp=src%2Fqtui%2Fchatview.cpp;h=df25b1a14e143360aa8ab71afef550aed3a0b7f6;hp=3a432bf56c78fbbe5ea0361a509c6887ad184a73;hb=2c4cc10cfb540da2b33c2a2dba8e012b2b594395;hpb=65f099cba1e42e6acb0f64cb6327083a26f10f34 diff --git a/src/qtui/chatview.cpp b/src/qtui/chatview.cpp index 3a432bf5..df25b1a1 100644 --- a/src/qtui/chatview.cpp +++ b/src/qtui/chatview.cpp @@ -292,7 +292,7 @@ QSet ChatView::visibleChatLines(Qt::ItemSelectionMode mode) const QList ChatView::visibleChatLinesSorted(Qt::ItemSelectionMode mode) const { QList result = visibleChatLines(mode).toList(); - qSort(result.begin(), result.end(), chatLinePtrLessThan); + std::sort(result.begin(), result.end(), chatLinePtrLessThan); return result; }