aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cmakeprojectmanager/makestep.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <[email protected]>2010-02-01 12:43:56 +0100
committerFriedemann Kleint <[email protected]>2010-02-01 12:43:56 +0100
commit2fd8b2d7ffa2ac032bfe3a17efe7d152c4cef14d (patch)
treed09291af8cbedb1b80fd8992429dc46af4766dba /src/plugins/cmakeprojectmanager/makestep.cpp
parentd2235489e83d70648f26445426a521bb15bab579 (diff)
Fix some code scanning issues.
QString: Use QChar where appropriate.
Diffstat (limited to 'src/plugins/cmakeprojectmanager/makestep.cpp')
-rw-r--r--src/plugins/cmakeprojectmanager/makestep.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cmakeprojectmanager/makestep.cpp b/src/plugins/cmakeprojectmanager/makestep.cpp
index 0c3b09843d6..532fff0452c 100644
--- a/src/plugins/cmakeprojectmanager/makestep.cpp
+++ b/src/plugins/cmakeprojectmanager/makestep.cpp
@@ -292,7 +292,7 @@ void MakeStepConfigWidget::updateDetails()
CMakeBuildConfiguration *bc = m_makeStep->cmakeBuildConfiguration();
ProjectExplorer::ToolChain *tc = bc->toolChain();
if (tc)
- m_summaryText = tr("<b>Make:</b> %1 %2").arg(tc->makeCommand(), arguments.join(" "));
+ m_summaryText = tr("<b>Make:</b> %1 %2").arg(tc->makeCommand(), arguments.join(QString(QLatin1Char(' '))));
else
m_summaryText = tr("<b>Unknown Toolchain</b>");
emit updateSummary();