Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/User.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/User.cpp b/src/User.cpp
index 893ccc5ae..58e8c1c0a 100644
--- a/src/User.cpp
+++ b/src/User.cpp
@@ -18,5 +18,8 @@ User::User() {
}
bool User::lessThan(const User *first, const User *second) {
- return (QString::localeAwareCompare(first->qsName, second->qsName) < 0);
+ // We explicitly don't use localeAwareCompare as this would result in a different
+ // ordering of users on clients with different locales. This is not what one would
+ // expect and thus we don't take the locale into account for comparing users.
+ return QString::compare(first->qsName, second->qsName) < 0;
}