From b210294c86ed89a4765d8f40439dec9fde9ada36 Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 2 Oct 2014 13:59:11 +0200 Subject: [PATCH] ProjectExplorer: Remove connection That was not removed in a83bf58b. The slot was moved into a lambda, but the connection was not removed. Change-Id: Ieb2883f9721b1b513c56aa95625b7ae038a33ad0 Reviewed-by: Christian Kandeler --- src/plugins/projectexplorer/runsettingspropertiespage.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/plugins/projectexplorer/runsettingspropertiespage.cpp b/src/plugins/projectexplorer/runsettingspropertiespage.cpp index d884fc26992..65b5a2ecd4c 100644 --- a/src/plugins/projectexplorer/runsettingspropertiespage.cpp +++ b/src/plugins/projectexplorer/runsettingspropertiespage.cpp @@ -381,8 +381,6 @@ void RunSettingsWidget::aboutToShowDeployMenu() QAction *action = m_addDeployMenu->addAction(factory->displayNameForId(id)); DeployFactoryAndId data = { factory, id }; action->setData(QVariant::fromValue(data)); - connect(action, SIGNAL(triggered()), - this, SLOT(addDeployConfiguration())); connect(action, &QAction::triggered, [factory, id, this]() { if (!factory->canCreate(m_target, id)) return;