1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-16 12:55:12 +03:00

Fixes #2002: Companion audio tracks not alphabetically sorted

This commit is contained in:
Damjan Adamic 2015-02-28 20:48:44 +01:00
parent 92ceaa948c
commit 471f68beb9
3 changed files with 11 additions and 1 deletions

View file

@ -1020,3 +1020,8 @@ QSet<QString> getFilesSet(const QString &path, const QStringList &filter, int ma
}
return result;
}
bool caseInsensitiveLessThan(const QString &s1, const QString &s2)
{
return s1.toLower() < s2.toLower();
}