Docker: Pass context object to lambda connections

Remove some unneeded lambda () brackets.

Change-Id: I2fcd83ec2e68a7aeb8f51fa39e7e69cc16e26bc8
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2022-12-07 23:47:15 +01:00
parent 9e571931d0
commit c5a60d2dc2
2 changed files with 4 additions and 4 deletions

View File

@@ -929,7 +929,7 @@ public:
return m_model.index(source_row, 0, parent).data(Qt::DisplayRole) != "<none>"; return m_model.index(source_row, 0, parent).data(Qt::DisplayRole) != "<none>";
}); });
connect(showUnnamedContainers, &QCheckBox::toggled, this, [this]() { connect(showUnnamedContainers, &QCheckBox::toggled, this, [this] {
m_proxyModel->invalidate(); m_proxyModel->invalidate();
}); });
@@ -981,7 +981,7 @@ public:
m_process = new QtcProcess(this); m_process = new QtcProcess(this);
m_process->setCommand(cmd); m_process->setCommand(cmd);
connect(m_process, &QtcProcess::readyReadStandardOutput, [this] { connect(m_process, &QtcProcess::readyReadStandardOutput, this, [this] {
const QString out = QString::fromUtf8(m_process->readAllStandardOutput().trimmed()); const QString out = QString::fromUtf8(m_process->readAllStandardOutput().trimmed());
m_log->append(out); m_log->append(out);
for (const QString &line : out.split('\n')) { for (const QString &line : out.split('\n')) {
@@ -1013,7 +1013,7 @@ public:
errorLabel->setVisible(true); errorLabel->setVisible(true);
}); });
connect(m_view->selectionModel(), &QItemSelectionModel::selectionChanged, [this] { connect(m_view->selectionModel(), &QItemSelectionModel::selectionChanged, this, [this] {
const QModelIndexList selectedRows = m_view->selectionModel()->selectedRows(); const QModelIndexList selectedRows = m_view->selectionModel()->selectedRows();
QTC_ASSERT(selectedRows.size() == 1, return); QTC_ASSERT(selectedRows.size() == 1, return);
m_buttons->button(QDialogButtonBox::Ok)->setEnabled(selectedRows.size() == 1); m_buttons->button(QDialogButtonBox::Ok)->setEnabled(selectedRows.size() == 1);

View File

@@ -109,7 +109,7 @@ DockerDeviceWidget::DockerDeviceWidget(const IDevice::Ptr &device)
m_clangdExecutable->setAllowPathFromDevice(true); m_clangdExecutable->setAllowPathFromDevice(true);
m_clangdExecutable->setFilePath(m_data.clangdExecutable); m_clangdExecutable->setFilePath(m_data.clangdExecutable);
connect(m_clangdExecutable, &PathChooser::rawPathChanged, this, [this, dockerDevice]() { connect(m_clangdExecutable, &PathChooser::rawPathChanged, this, [this, dockerDevice] {
m_data.clangdExecutable = m_clangdExecutable->filePath(); m_data.clangdExecutable = m_clangdExecutable->filePath();
dockerDevice->setData(m_data); dockerDevice->setData(m_data);
}); });