diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-01-06 18:27:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-01-06 18:27:23 +0300 |
commit | 1db4d18ed1c04548ce8414adfb4e7cf830b39279 (patch) | |
tree | 4534efeb99af72798c8074a23a4b47a5bf6b3e75 /src/gui/windows/serverdialog.cpp | |
parent | 088ce632451aef33f28801029aaded8c5a4c9dac (diff) | |
download | ManaVerse-1db4d18ed1c04548ce8414adfb4e7cf830b39279.tar.gz ManaVerse-1db4d18ed1c04548ce8414adfb4e7cf830b39279.tar.bz2 ManaVerse-1db4d18ed1c04548ce8414adfb4e7cf830b39279.tar.xz ManaVerse-1db4d18ed1c04548ce8414adfb4e7cf830b39279.zip |
Move servertype enum into separate file.
Diffstat (limited to 'src/gui/windows/serverdialog.cpp')
-rw-r--r-- | src/gui/windows/serverdialog.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/gui/windows/serverdialog.cpp b/src/gui/windows/serverdialog.cpp index 808fde152..fab444050 100644 --- a/src/gui/windows/serverdialog.cpp +++ b/src/gui/windows/serverdialog.cpp @@ -60,50 +60,50 @@ static const int MAX_SERVERLIST = 15; -static std::string serverTypeToString(const ServerInfo::Type type) +static std::string serverTypeToString(const ServerType::Type type) { switch (type) { #ifdef TMWA_SUPPORT - case ServerInfo::TMWATHENA: + case ServerType::TMWATHENA: return "TmwAthena"; - case ServerInfo::EVOL: + case ServerType::EVOL: return "Evol"; #else - case ServerInfo::TMWATHENA: - case ServerInfo::EVOL: + case ServerType::TMWATHENA: + case ServerType::EVOL: return ""; #endif #ifdef EATHENA_SUPPORT - case ServerInfo::EATHENA: + case ServerType::EATHENA: return "eAthena"; - case ServerInfo::EVOL2: + case ServerType::EVOL2: return "Evol2"; #else - case ServerInfo::EATHENA: - case ServerInfo::EVOL2: + case ServerType::EATHENA: + case ServerType::EVOL2: return ""; #endif default: - case ServerInfo::UNKNOWN: + case ServerType::UNKNOWN: return ""; } } -static uint16_t defaultPortForServerType(const ServerInfo::Type type) +static uint16_t defaultPortForServerType(const ServerType::Type type) { switch (type) { default: - case ServerInfo::EATHENA: - case ServerInfo::EVOL2: + case ServerType::EATHENA: + case ServerType::EVOL2: #ifdef EATHENA_SUPPORT return 6900; #endif - case ServerInfo::UNKNOWN: + case ServerType::UNKNOWN: #ifdef TMWA_SUPPORT - case ServerInfo::TMWATHENA: - case ServerInfo::EVOL: + case ServerType::TMWATHENA: + case ServerType::EVOL: #endif return 6901; } @@ -492,7 +492,7 @@ void ServerDialog::loadServers(const bool addNew) server.type = ServerInfo::parseType(type); // Ignore unknown server types - if (server.type == ServerInfo::UNKNOWN) + if (server.type == ServerType::UNKNOWN) { logger->log("Ignoring server entry with unknown type: %s", type.c_str()); |