summaryrefslogtreecommitdiff
path: root/net-im/qTox/files/patch-git-6e71ccfdad17b275961efff0a51a182de61ef963
diff options
context:
space:
mode:
Diffstat (limited to 'net-im/qTox/files/patch-git-6e71ccfdad17b275961efff0a51a182de61ef963')
-rw-r--r--net-im/qTox/files/patch-git-6e71ccfdad17b275961efff0a51a182de61ef96313
1 files changed, 13 insertions, 0 deletions
diff --git a/net-im/qTox/files/patch-git-6e71ccfdad17b275961efff0a51a182de61ef963 b/net-im/qTox/files/patch-git-6e71ccfdad17b275961efff0a51a182de61ef963
new file mode 100644
index 000000000000..1651d0ce8e41
--- /dev/null
+++ b/net-im/qTox/files/patch-git-6e71ccfdad17b275961efff0a51a182de61ef963
@@ -0,0 +1,13 @@
+diff --git src/widget/form/groupchatform.cpp src/widget/form/groupchatform.cpp
+index 73411749..58e23b02 100644
+--- src/widget/form/groupchatform.cpp
++++ src/widget/form/groupchatform.cpp
+@@ -218,7 +218,7 @@ void GroupChatForm::updateUserNames()
+ // add the labels in alphabetical order into the layout
+ auto nickLabelList = peerLabels.values();
+
+- qSort(nickLabelList.begin(), nickLabelList.end(), [](const QLabel* a, const QLabel* b)
++ std::sort(nickLabelList.begin(), nickLabelList.end(), [](const QLabel* a, const QLabel* b)
+ {
+ return a->text().toLower() < b->text().toLower();
+ });