Android: Pass context object to lambda connections

Remove some unneeded lambda () brackets.

Change-Id: Id00e2bc736683bb844cc7ba936ac9d21aa204416
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Jarek Kobus
2022-12-07 14:38:23 +01:00
parent 9afcf870a1
commit 0d74be319a
7 changed files with 17 additions and 17 deletions

View File

@@ -381,7 +381,7 @@ AndroidSettingsWidget::AndroidSettingsWidget()
this, &AndroidSettingsWidget::onSdkPathChanged);
connect(m_ndkListWidget, &QListWidget::currentTextChanged,
[this, removeCustomNdkButton](const QString &ndk) {
this, [this, removeCustomNdkButton](const QString &ndk) {
updateUI();
removeCustomNdkButton->setEnabled(m_androidConfig.getCustomNdkList().contains(ndk));
});