tr()-Fixes for 2.5.

Change-Id: I51d3f71e49b7cbd2e7608a11e08f3066ee133776
Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
This commit is contained in:
Friedemann Kleint
2012-01-31 11:03:22 +01:00
committed by hjk
parent 8591b89807
commit 2a2ef450ac
5 changed files with 9 additions and 12 deletions

View File

@@ -136,7 +136,7 @@ bool MakeStep::init()
m_tasks.clear();
if (!bc) {
m_tasks.append(ProjectExplorer::Task(ProjectExplorer::Task::Error,
tr("Qt Creator needs a buildconfiguration set up to build. Configure a tool chain in Project mode."),
tr("Qt Creator needs a build configuration set up to build. Configure a tool chain in Project mode."),
Utils::FileName(), -1,
Core::Id(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM)));
return false;
@@ -409,7 +409,7 @@ void MakeStepConfigWidget::updateDetails()
if (!bc)
bc = qobject_cast<Qt4BuildConfiguration *>(m_makeStep->target()->activeBuildConfiguration());
if (!bc)
m_summaryText = tr("No qt4 buildconfiguration."); // Can't happen
m_summaryText = tr("No Qt4 build configuration."); // Can't happen
ProjectExplorer::ProcessParameters param;
param.setMacroExpander(bc->macroExpander());