aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/coreplugin/externaltoolmanager.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2017-09-07 17:05:47 +0200
committerUlf Hermann <ulf.hermann@qt.io>2017-09-08 09:06:53 +0000
commit47886969cc340745a517d76c81b69fd7954fa173 (patch)
tree91875446d6f865510e071ede477b81e5c8aea5ad /src/plugins/coreplugin/externaltoolmanager.cpp
parente3ae628584f2434b6cc9210726deafd55769c260 (diff)
Drop unused variables and lambda captures
Also, add context to connect() expressions where we are or were capturing "this". Change-Id: I6e006ba6f83d532478018550d148ee93eca59605 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io> Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/coreplugin/externaltoolmanager.cpp')
-rw-r--r--src/plugins/coreplugin/externaltoolmanager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/coreplugin/externaltoolmanager.cpp b/src/plugins/coreplugin/externaltoolmanager.cpp
index c6ec74f28b..80d98243b6 100644
--- a/src/plugins/coreplugin/externaltoolmanager.cpp
+++ b/src/plugins/coreplugin/externaltoolmanager.cpp
@@ -77,7 +77,7 @@ ExternalToolManager::ExternalToolManager()
d->m_configureSeparator = new QAction(this);
d->m_configureSeparator->setSeparator(true);
d->m_configureAction = new QAction(ICore::msgShowOptionsDialog(), this);
- connect(d->m_configureAction, &QAction::triggered, [this] {
+ connect(d->m_configureAction, &QAction::triggered, this, [] {
ICore::showOptionsDialog(Constants::SETTINGS_ID_TOOLS);
});