diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-08-26 01:31:56 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-08-26 01:31:56 -0400 |
| commit | 896d80d02ccef746ba6598534ce444da2755ae04 (patch) | |
| tree | 90f7a878d11ecf0436d79a40b47b222d3ed4dfe0 /src/settings.h | |
| parent | aff3ee8fcf427c9ff8c554a179222eabec3a95e2 (diff) | |
server settings converted to array instead of byte array map
moved cleanup to ServerList
Diffstat (limited to 'src/settings.h')
| -rw-r--r-- | src/settings.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/settings.h b/src/settings.h index e7337301..810daac2 100644 --- a/src/settings.h +++ b/src/settings.h @@ -484,7 +484,8 @@ public: void setDownloadSpeed(const QString &serverName, int bytesPerSecond); ServerList getServers() const; - void updateServers(const ServerList& servers); + ServerList getServersFromOldMap() const; + void updateServers(ServerList servers); /** * @brief add a plugin that is to be blacklisted |
