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:
authorRobert Adam <dev@robert-adam.de>2021-06-03 17:07:35 +0300
committerRobert Adam <dev@robert-adam.de>2021-06-07 08:59:38 +0300
commitf42490021a48f080596dff263ad029762883334a (patch)
tree3d0eecb263212550238b94fa9641cf85dfe9bc96 /src/murmur/Server.cpp
parent8d6b2202cf464190e1e936d6af2056c1290e0cde (diff)
REFAC: Turn MumbleVersion into namespace
The "class" was only used as a namespace anyway. And while we're on it the entire thing was renamed to "Version" instead of "MumbleVersion".
Diffstat (limited to 'src/murmur/Server.cpp')
-rw-r--r--src/murmur/Server.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/murmur/Server.cpp b/src/murmur/Server.cpp
index 005a9ed23..c470f04e2 100644
--- a/src/murmur/Server.cpp
+++ b/src/murmur/Server.cpp
@@ -372,13 +372,13 @@ static QVariant normalizeSuggestVersion(QVariant suggestVersion) {
// We handle both cases the same: by pretending the
// suggestversion is a version string in both cases.
//
- // If it is a version string, the call to MumbleVersion::getRaw()
+ // If it is a version string, the call to Version::getRaw()
// will return the bitmasked representation.
//
- // If it is not a version string, the call to MumbleVersion::getRaw()
+ // If it is not a version string, the call to Version::getRaw()
// will return 0, so it is effectively a no-op.
if (integerValue == 0) {
- integerValue = MumbleVersion::getRaw(suggestVersion.toString());
+ integerValue = Version::getRaw(suggestVersion.toString());
}
if (integerValue != 0) {