forked from qt-creator/qt-creator
Android: Remove two now unneded lambda captures
Change-Id: I46647daf2a0edbb4cb1b062989631b83dd5b42c5 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
@@ -837,7 +837,7 @@ public:
|
|||||||
":/android/images/androiddevice.png");
|
":/android/images/androiddevice.png");
|
||||||
setConstructionFunction(&AndroidDevice::create);
|
setConstructionFunction(&AndroidDevice::create);
|
||||||
if (androidConfig().sdkToolsOk()) {
|
if (androidConfig().sdkToolsOk()) {
|
||||||
setCreator([this] {
|
setCreator([] {
|
||||||
AvdDialog dialog = AvdDialog(Core::ICore::dialogParent());
|
AvdDialog dialog = AvdDialog(Core::ICore::dialogParent());
|
||||||
if (dialog.exec() != QDialog::Accepted)
|
if (dialog.exec() != QDialog::Accepted)
|
||||||
return IDevice::Ptr();
|
return IDevice::Ptr();
|
||||||
|
@@ -451,7 +451,7 @@ AndroidSettingsWidget::AndroidSettingsWidget()
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
setOnApply([this] { AndroidConfigurations::setConfig(androidConfig()); });
|
setOnApply([] { AndroidConfigurations::setConfig(androidConfig()); });
|
||||||
}
|
}
|
||||||
|
|
||||||
AndroidSettingsWidget::~AndroidSettingsWidget()
|
AndroidSettingsWidget::~AndroidSettingsWidget()
|
||||||
|
Reference in New Issue
Block a user