ProjectExplorer: fix one more capitalization issue

Change-Id: I92f6e0044ce240e21a3f5865888268bb2bd61de0
Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
This commit is contained in:
Leena Miettinen
2015-03-16 14:26:43 +01:00
committed by Leena Miettinen
parent 7d6fd6ce5e
commit ceb0349380

View File

@@ -413,7 +413,7 @@ void KitEnvironmentConfigWidget::refresh()
QString shortSummary = Utils::EnvironmentItem::toStringList(changes).join(QLatin1String("; ")); QString shortSummary = Utils::EnvironmentItem::toStringList(changes).join(QLatin1String("; "));
QFontMetrics fm(m_summaryLabel->font()); QFontMetrics fm(m_summaryLabel->font());
shortSummary = fm.elidedText(shortSummary, Qt::ElideRight, m_summaryLabel->width()); shortSummary = fm.elidedText(shortSummary, Qt::ElideRight, m_summaryLabel->width());
m_summaryLabel->setText(shortSummary.isEmpty() ? tr("No Changes to apply") : shortSummary); m_summaryLabel->setText(shortSummary.isEmpty() ? tr("No changes to apply.") : shortSummary);
if (m_editor) if (m_editor)
m_editor->setPlainText(Utils::EnvironmentItem::toStringList(changes).join(QLatin1Char('\n'))); m_editor->setPlainText(Utils::EnvironmentItem::toStringList(changes).join(QLatin1Char('\n')));
} }