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

Ask before removing targets

Reviewed-by: Robert Loehning
parent 025ba126
No related branches found
No related tags found
No related merge requests found
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
#include <QtCore/QCoreApplication> #include <QtCore/QCoreApplication>
#include <QtGui/QLabel> #include <QtGui/QLabel>
#include <QtGui/QMessageBox>
#include <QtGui/QVBoxLayout> #include <QtGui/QVBoxLayout>
using namespace ProjectExplorer; using namespace ProjectExplorer;
...@@ -249,8 +250,13 @@ void TargetSettingsPanelWidget::removeTarget() ...@@ -249,8 +250,13 @@ void TargetSettingsPanelWidget::removeTarget()
{ {
int index = m_selector->currentIndex(); int index = m_selector->currentIndex();
Target *t = m_targets.at(index); Target *t = m_targets.at(index);
// TODO: Ask before removal? int ret = QMessageBox::warning(this, tr("Qt Creator"),
m_project->removeTarget(t); tr("Do you really want to remove the\n"
"\"%1\" target?").arg(t->displayName()),
QMessageBox::Yes | QMessageBox::No,
QMessageBox::No);
if (ret == QMessageBox::Yes)
m_project->removeTarget(t);
} }
void TargetSettingsPanelWidget::targetAdded(ProjectExplorer::Target *target) void TargetSettingsPanelWidget::targetAdded(ProjectExplorer::Target *target)
......
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