forked from qt-creator/qt-creator
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>
This commit is contained in:
@@ -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);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user