Use QString::localeAwareCompare for comparsion

This commit is contained in:
Chocobo1 2016-05-21 14:35:33 +08:00 committed by sledgehammer999
commit cc48ca1fdc

View file

@ -129,7 +129,7 @@ void SearchWidget::fillCatCombobox()
QList<QStrPair> tmpList;
foreach (const QString &cat, m_searchEngine->supportedCategories())
tmpList << qMakePair(SearchEngine::categoryFullName(cat), cat);
std::sort(tmpList.begin(), tmpList.end(), [](const QStrPair &l, const QStrPair &r) { return (l.first < r.first); } );
std::sort(tmpList.begin(), tmpList.end(), [](const QStrPair &l, const QStrPair &r) { return (QString::localeAwareCompare(l.first, r.first) < 0); });
foreach (const QStrPair &p, tmpList) {
qDebug("Supported category: %s", qPrintable(p.second));