diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-20 21:19:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-20 21:19:35 +0300 |
commit | 3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9 (patch) | |
tree | 2053748aba4fd1e01020effe9322757426354d28 /src/gui/windows/updaterwindow.cpp | |
parent | 2577a25f8a4acf587526809fda2ded95875e1222 (diff) | |
download | plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.tar.gz plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.tar.bz2 plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.tar.xz plus-3e8fecc9a62afff0054fa0fa23af86c8ef15a1c9.zip |
Add missing const in gui directory.
Diffstat (limited to 'src/gui/windows/updaterwindow.cpp')
-rw-r--r-- | src/gui/windows/updaterwindow.cpp | 42 |
1 files changed, 27 insertions, 15 deletions
diff --git a/src/gui/windows/updaterwindow.cpp b/src/gui/windows/updaterwindow.cpp index 09f529259..242e32911 100644 --- a/src/gui/windows/updaterwindow.cpp +++ b/src/gui/windows/updaterwindow.cpp @@ -487,9 +487,9 @@ void UpdaterWindow::loadPatch() } int UpdaterWindow::updateProgress(void *ptr, - DownloadStatusT status, + const DownloadStatusT status, size_t dt, - size_t dn) + const size_t dn) { UpdaterWindow *const uw = reinterpret_cast<UpdaterWindow *>(ptr); if (!uw) @@ -685,8 +685,10 @@ void UpdaterWindow::loadLocalUpdates(const std::string &dir) } const std::string fixPath = dir + "/fix"; - for (unsigned int updateIndex = 0, sz = CAST_U32( - updateFiles.size()); updateIndex < sz; updateIndex ++) + for (unsigned int updateIndex = 0, + fsz = CAST_U32(updateFiles.size()); + updateIndex < fsz; + updateIndex++) { const UpdateFile &file = updateFiles[updateIndex]; if (!file.group.empty()) @@ -712,8 +714,10 @@ void UpdaterWindow::unloadUpdates(const std::string &dir) } const std::string fixPath = dir + "/fix"; - for (unsigned int updateIndex = 0, sz = CAST_U32( - updateFiles.size()); updateIndex < sz; updateIndex ++) + for (unsigned int updateIndex = 0, + fsz = CAST_U32(updateFiles.size()); + updateIndex < fsz; + updateIndex++) { UpdaterWindow::removeUpdateFile(dir, fixPath, @@ -728,8 +732,10 @@ void UpdaterWindow::loadManaPlusUpdates(const std::string &dir) std::vector<UpdateFile> updateFiles = loadXMLFile( std::string(fixPath).append("/").append(xmlUpdateFile), false); - for (unsigned int updateIndex = 0, sz = CAST_U32( - updateFiles.size()); updateIndex < sz; updateIndex ++) + for (unsigned int updateIndex = 0, + fsz = CAST_U32(updateFiles.size()); + updateIndex < fsz; + updateIndex++) { const UpdateFile &file = updateFiles[updateIndex]; if (!file.group.empty()) @@ -752,8 +758,10 @@ void UpdaterWindow::unloadManaPlusUpdates(const std::string &dir) const std::vector<UpdateFile> updateFiles = loadXMLFile( std::string(fixPath).append("/").append(xmlUpdateFile), true); - for (unsigned int updateIndex = 0, sz = CAST_U32( - updateFiles.size()); updateIndex < sz; updateIndex ++) + for (unsigned int updateIndex = 0, + fsz = CAST_U32(updateFiles.size()); + updateIndex < fsz; + updateIndex++) { std::string name = updateFiles[updateIndex].name; if (strStartWith(name, "manaplus_")) @@ -1056,7 +1064,7 @@ unsigned long UpdaterWindow::getFileHash(const std::string &filePath) } void UpdaterWindow::handleLink(const std::string &link, - MouseEvent *event A_UNUSED) + MouseEvent *const event A_UNUSED) { if (strStartWith(link, "http://") || strStartWith(link, "https://")) openBrowser(link); @@ -1085,8 +1093,10 @@ void UpdaterWindow::loadMods(const std::string &dir, splitToStringSet(modsList, modsString, '|'); const std::string fixPath = dir + "/fix"; - for (unsigned int updateIndex = 0, sz = CAST_U32( - updateFiles.size()); updateIndex < sz; updateIndex ++) + for (unsigned int updateIndex = 0, + fsz = CAST_U32(updateFiles.size()); + updateIndex < fsz; + updateIndex ++) { const UpdateFile &file = updateFiles[updateIndex]; if (file.group.empty()) @@ -1105,8 +1115,10 @@ void UpdaterWindow::loadMods(const std::string &dir, std::vector<UpdateFile> updateFiles2 = loadXMLFile( std::string(fixPath).append("/").append(xmlUpdateFile), true); - for (unsigned int updateIndex = 0, sz = CAST_U32( - updateFiles2.size()); updateIndex < sz; updateIndex ++) + for (unsigned int updateIndex = 0, + fsz = CAST_U32(updateFiles2.size()); + updateIndex < fsz; + updateIndex++) { const UpdateFile &file = updateFiles2[updateIndex]; if (file.group.empty()) |