diff options
author | Friedemann Kleint <[email protected]> | 2010-02-01 12:43:56 +0100 |
---|---|---|
committer | Friedemann Kleint <[email protected]> | 2010-02-01 12:43:56 +0100 |
commit | 2fd8b2d7ffa2ac032bfe3a17efe7d152c4cef14d (patch) | |
tree | d09291af8cbedb1b80fd8992429dc46af4766dba /src/plugins/cmakeprojectmanager/makestep.cpp | |
parent | d2235489e83d70648f26445426a521bb15bab579 (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.cpp | 2 |
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(); |