diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-04 10:47:42 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-04 10:47:42 -0400 |
| commit | daa0b4b3390f80ebc4d8b65f937f2715c76711d4 (patch) | |
| tree | 1aa76a502a05c48c1708c532aae0227e32529221 /src/installationmanager.cpp | |
| parent | 88ff7bb3721a2d8b94ccb141a86769c3bfc460bb (diff) | |
forgot one tr()
Diffstat (limited to 'src/installationmanager.cpp')
| -rw-r--r-- | src/installationmanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/installationmanager.cpp b/src/installationmanager.cpp index af82c5e2..dd5cfb55 100644 --- a/src/installationmanager.cpp +++ b/src/installationmanager.cpp @@ -307,7 +307,7 @@ QStringList InstallationManager::extractFiles(const QStringList &filesOrig, bool QCoreApplication::processEvents(); } while (!future.isFinished() || m_InstallationProgress->isVisible()); if (!future.result()) { - throw MyException(QString("Extraction failed: %1").arg(m_ArchiveHandler->getLastError())); + throw MyException(tr("Extraction failed: %1").arg(m_ArchiveHandler->getLastError())); } return result; |
