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
diff options
context:
space:
mode:
authorStefan Hacker <dd0t@users.sourceforge.net>2010-11-18 04:15:40 +0300
committerStefan Hacker <dd0t@users.sourceforge.net>2010-11-18 04:16:33 +0300
commitce8cedf7716a6cefd55e726ad0d8cb8dadcfad80 (patch)
tree79243304e94e1fc78170b939ee9dafe5191051df /src/murmur/MurmurIce.cpp
parentc644952f4ed2f239807cbd4fcba2be64cde2b31d (diff)
Unify User/ClientUser sorting. Fix "usernames in overlay are in different order" #3110572 . Fix other sorting issues. Fix OverlayTest compilation.
Diffstat (limited to 'src/murmur/MurmurIce.cpp')
-rw-r--r--src/murmur/MurmurIce.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/murmur/MurmurIce.cpp b/src/murmur/MurmurIce.cpp
index 08a97c9c7..d3ed701f9 100644
--- a/src/murmur/MurmurIce.cpp
+++ b/src/murmur/MurmurIce.cpp
@@ -863,7 +863,7 @@ static void impl_Server_getChannels(const ::Murmur::AMD_Server_getChannelsPtr cb
}
static bool userSort(const ::User *a, const ::User *b) {
- return a->qsName < b->qsName;
+ return ::User::lessThan(a, b);
}
static bool channelSort(const ::Channel *a, const ::Channel *b) {