diff options
Diffstat (limited to 'src/gui/serverdialog.cpp')
-rw-r--r-- | src/gui/serverdialog.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/gui/serverdialog.cpp b/src/gui/serverdialog.cpp index f0016322..6a7f6ab5 100644 --- a/src/gui/serverdialog.cpp +++ b/src/gui/serverdialog.cpp @@ -523,15 +523,14 @@ void ServerDialog::loadServers() // Add the server to the local list if it's not already present bool found = false; int i = 0; - for (auto it = mServers.begin(); it != mServers.end(); - ++it) + for (auto &s : mServers) { - if (*it == server) + if (s == server) { // Use the name listed in the server list - (*it).name = server.name; - (*it).version = server.version; - (*it).description = server.description; + s.name = server.name; + s.version = server.version; + s.description = server.description; mServersListModel->setVersionString(i, version); found = true; break; |