Skip to content
Snippets Groups Projects
Commit a1e103c2 authored by Tobias Hunger's avatar Tobias Hunger
Browse files

Make configuration name more visible

 * Make the name of the configuration about to be removed more visible.
parent df0c17b4
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
......@@ -256,7 +256,7 @@ void RunSettingsWidget::removeRunConfiguration()
{
RunConfiguration *rc = m_target->activeRunConfiguration();
QMessageBox msgBox(QMessageBox::Question, tr("Remove Run Configuration?"),
tr("Do you really want to delete deploy configuration %1.").arg(rc->displayName()),
tr("Do you really want to delete deploy configuration <b>%1</b>.").arg(rc->displayName()),
QMessageBox::Yes|QMessageBox::No, this);
msgBox.setDefaultButton(QMessageBox::No);
msgBox.setEscapeButton(QMessageBox::No);
......@@ -366,7 +366,7 @@ void RunSettingsWidget::removeDeployConfiguration()
{
DeployConfiguration *dc = m_target->activeDeployConfiguration();
QMessageBox msgBox(QMessageBox::Question, tr("Remove Deploy Configuration?"),
tr("Do you really want to delete deploy configuration %1.").arg(dc->displayName()),
tr("Do you really want to delete deploy configuration <b>%1</b>.").arg(dc->displayName()),
QMessageBox::Yes|QMessageBox::No, this);
msgBox.setDefaultButton(QMessageBox::No);
msgBox.setEscapeButton(QMessageBox::No);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment