summaryrefslogtreecommitdiff
path: root/net-im/qTox/files/patch-git-6e71ccfdad17b275961efff0a51a182de61ef963
diff options
context:
space:
mode:
authorTobias C. Berner <tcberner@FreeBSD.org>2019-10-01 04:13:31 +0000
committerTobias C. Berner <tcberner@FreeBSD.org>2019-10-01 04:13:31 +0000
commitc45de9579f6ec97574056dd335df02031ccd00ad (patch)
treebf42b7c476faa7a6183d0feaa4c65bb90053847d /net-im/qTox/files/patch-git-6e71ccfdad17b275961efff0a51a182de61ef963
parentirc/py-limnoria: Backport Web plugin bugfixes (diff)
Qt5 update to 5.13.0
For new features, check: https://wiki.qt.io/New_Features_in_Qt_5.13 Thanks to adridg who helped to fix a lot of packages. Exp-run by: antoine PR: 238782
Notes
Notes: svn path=/head/; revision=513447
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();
+ });