Android: Fix warning

"warning: lambda capture 'this' is not used"

Change-Id: If4dc702495409954c2948d4964b13c1e075becea
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Eike Ziller
2022-07-26 11:26:51 +02:00
parent 4a95f693fb
commit 10da5083fe

View File

@@ -199,7 +199,7 @@ AndroidSdkManagerWidget::AndroidSdkManagerWidget(AndroidConfig &config,
switchView(PackageListing); switchView(PackageListing);
}); });
connect(expandCheck, &QCheckBox::stateChanged, this, [this, packagesView](int state) { connect(expandCheck, &QCheckBox::stateChanged, this, [packagesView](int state) {
if (state == Qt::Checked) if (state == Qt::Checked)
packagesView->expandAll(); packagesView->expandAll();
else else