summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/buildstep.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2012-01-13 14:20:45 +0100
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2012-01-14 21:13:41 +0100
commit80d3f73319708dc0c185286c6d9f439418ab0305 (patch)
tree56bcdec35c37155f1f271abc74df4ed8fd8768ac /src/plugins/projectexplorer/buildstep.h
parent2776346db43fa6835e495637bc262c47e3719bc0 (diff)
downloadqt-creator-80d3f73319708dc0c185286c6d9f439418ab0305.tar.gz
Compile Qt4ProjectManager with QT_NO_CAST_FROM_ASCII.
Change-Id: If9fd111032975d2a313084f5fedf20561806e268 Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
Diffstat (limited to 'src/plugins/projectexplorer/buildstep.h')
-rw-r--r--src/plugins/projectexplorer/buildstep.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/buildstep.h b/src/plugins/projectexplorer/buildstep.h
index 7f45fc9947..052ce8b4b7 100644
--- a/src/plugins/projectexplorer/buildstep.h
+++ b/src/plugins/projectexplorer/buildstep.h
@@ -160,7 +160,7 @@ public:
~SimpleBuildStepConfigWidget() {}
- QString summaryText() const { return QString("<b>%1</b>").arg(displayName()); }
+ QString summaryText() const { return QLatin1String("<b>") + displayName() + QLatin1String("</b>"); }
QString displayName() const { return m_step->displayName(); }
bool showWidget() const { return false; }
BuildStep *step() const { return m_step; }