aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-04-03 16:34:24 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2014-04-03 16:43:31 +0200
commite49997e66a79127ba6145af3e1d28a4732b2396b (patch)
tree3b965663b026980a659e7389c965793d2f2b8aad /src/lib
parent371bfe63c58c46a286244b90b64e5518206ccce5 (diff)
qtprofilesetup: Fix missing string replacement in output string.
Change-Id: I57dfe4358f52055f30e8fde649f233af550b749d Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/qtprofilesetup/qtprofilesetup.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/qtprofilesetup/qtprofilesetup.cpp b/src/lib/qtprofilesetup/qtprofilesetup.cpp
index da892a739..dca51c169 100644
--- a/src/lib/qtprofilesetup/qtprofilesetup.cpp
+++ b/src/lib/qtprofilesetup/qtprofilesetup.cpp
@@ -282,7 +282,7 @@ static void createModules(Profile &profile, Settings *settings,
QString removeError;
if (!qbs::Internal::removeDirectoryWithContents(qbsQtModuleBaseDir, &removeError)) {
throw ErrorInfo(Internal::Tr::tr("Setting up Qt profile '%1' failed: Could not remove "
- "the existing profile of the same name (%2).").arg(removeError));
+ "the existing profile of the same name (%2).").arg(profile.name(), removeError));
}
copyTemplateFile(QLatin1String("QtModule.qbs"), qbsQtModuleBaseDir, profile.name());
copyTemplateFile(QLatin1String("qtfunctions.js"), qbsQtModuleBaseDir, profile.name());