summaryrefslogtreecommitdiffstats
path: root/src/libs/installer
diff options
context:
space:
mode:
authorTakayuki ORITO <iori.ayane@gmail.com>2016-04-29 13:37:37 +0900
committerNiels Weber <niels.weber@qt.io>2016-04-29 06:22:08 +0000
commit359d4846ba94f7ded8a951b3363721454632f358 (patch)
treeca3063ea2c31b5195d7d2d0bd7409a5bdd649791 /src/libs/installer
parent220d18b41b836a0c10ea097a6f93c3f5d204bf50 (diff)
Fix the exception message because missing a space.
Added space between 'convert' from 'path'. Change-Id: I25f4eedc7d322d29c8c93dd7dd80fc13232de0b7 Reviewed-by: Niels Weber <niels.weber@qt.io>
Diffstat (limited to 'src/libs/installer')
-rw-r--r--src/libs/installer/lib7z_facade.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/installer/lib7z_facade.cpp b/src/libs/installer/lib7z_facade.cpp
index 8f21343db..675403fe8 100644
--- a/src/libs/installer/lib7z_facade.cpp
+++ b/src/libs/installer/lib7z_facade.cpp
@@ -1351,7 +1351,7 @@ void Lib7z::createArchive(QFileDevice* archive, const QStringList &sourcePaths,
const UString nativePath = QString2UString(cleanPath);
if (UString2QString(nativePath) != cleanPath) {
throw SevenZipException(QCoreApplication::translate("Lib7z", "Could not convert"
- "path: %1.").arg(path));
+ " path: %1.").arg(path));
}
censor.AddItem(true /* always include item */, nativePath, false /* never recurse*/);
}