diff options
author | Petr Mrázek <peterix@gmail.com> | 2018-06-28 23:18:45 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2018-06-28 23:18:45 +0200 |
commit | 7fe94ca7b4aa191b1e79331b16724b7e9cc9f56e (patch) | |
tree | 59d922b5c35a70542355ae26f6a2dc442afa5307 /api/logic/modplatform/ftb/FtbPackInstallTask.cpp | |
parent | b5f636b3d57a63f634c4efe5a4ccd9a91f53df04 (diff) | |
download | PrismLauncher-7fe94ca7b4aa191b1e79331b16724b7e9cc9f56e.tar.gz PrismLauncher-7fe94ca7b4aa191b1e79331b16724b7e9cc9f56e.tar.bz2 PrismLauncher-7fe94ca7b4aa191b1e79331b16724b7e9cc9f56e.zip |
NOISSUE fix all sorts of warnings, enable `Werror` and `pedantic`
Diffstat (limited to 'api/logic/modplatform/ftb/FtbPackInstallTask.cpp')
-rw-r--r-- | api/logic/modplatform/ftb/FtbPackInstallTask.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/logic/modplatform/ftb/FtbPackInstallTask.cpp b/api/logic/modplatform/ftb/FtbPackInstallTask.cpp index b57c2092..7815ef46 100644 --- a/api/logic/modplatform/ftb/FtbPackInstallTask.cpp +++ b/api/logic/modplatform/ftb/FtbPackInstallTask.cpp @@ -57,7 +57,7 @@ void FtbPackInstallTask::onDownloadProgress(qint64 current, qint64 total) { abortable = true; progress(current, total * 4); - setStatus(tr("Downloading zip for %1 (%2\%)").arg(m_pack.name).arg(current / 10)); + setStatus(tr("Downloading zip for %1 (%2%)").arg(m_pack.name).arg(current / 10)); } void FtbPackInstallTask::unzip() |