diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-06-01 17:48:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-06-01 17:48:11 +0300 |
commit | 6b15e62c1fefe8838bbc56cb314f3ab24ccebbc4 (patch) | |
tree | d158a975756cdd5983632af8ff34229dbb9007d9 /src/gui/windows/serverdialog.h | |
parent | 41d9ca028de0740fd23a3dabaece8d1fd1bf93c1 (diff) | |
download | manaverse-6b15e62c1fefe8838bbc56cb314f3ab24ccebbc4.tar.gz manaverse-6b15e62c1fefe8838bbc56cb314f3ab24ccebbc4.tar.bz2 manaverse-6b15e62c1fefe8838bbc56cb314f3ab24ccebbc4.tar.xz manaverse-6b15e62c1fefe8838bbc56cb314f3ab24ccebbc4.zip |
Convert DownloadStatus enum into strong typed enum.
Diffstat (limited to 'src/gui/windows/serverdialog.h')
-rw-r--r-- | src/gui/windows/serverdialog.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/windows/serverdialog.h b/src/gui/windows/serverdialog.h index e64177591..59105dd47 100644 --- a/src/gui/windows/serverdialog.h +++ b/src/gui/windows/serverdialog.h @@ -118,8 +118,10 @@ class ServerDialog final : public Window, bool needUpdateServers() const; - static int downloadUpdate(void *ptr, DownloadStatus::Type status, - size_t total, size_t remaining); + static int downloadUpdate(void *ptr, + DownloadStatusT status, + size_t total, + size_t remaining); Mutex mMutex; ServerInfos mServers; |