Make configuration name more visible

* Make the name of the configuration about to be removed more visible.
This commit is contained in:
Tobias Hunger
2010-08-30 16:38:13 +02:00
parent df0c17b4aa
commit a1e103c28d
2 changed files with 3 additions and 3 deletions

View File

@@ -318,7 +318,7 @@ void BuildSettingsWidget::cloneConfiguration()
void BuildSettingsWidget::deleteConfiguration()
{
QMessageBox msgBox(QMessageBox::Question, tr("Remove Build Configuration?"),
tr("Do you really want to delete build configuration %1.").arg(m_buildConfiguration->displayName()),
tr("Do you really want to delete build configuration <b>%1</b>.").arg(m_buildConfiguration->displayName()),
QMessageBox::Yes|QMessageBox::No, this);
msgBox.setDefaultButton(QMessageBox::No);
msgBox.setEscapeButton(QMessageBox::No);