diff options
author | Jarek Kobus <[email protected]> | 2022-07-19 22:51:32 +0200 |
---|---|---|
committer | Jarek Kobus <[email protected]> | 2022-07-20 10:30:48 +0000 |
commit | a98b185e90557bd12ec43f4268ff3943bf4c1b61 (patch) | |
tree | 037b579e933808ceec01e13ea9f34359592956ac /src/plugins/android/androidplugin.cpp | |
parent | 0dae822ca3715e31b2bb95afe89703465020d6a8 (diff) |
Drop Qt5: Android, IOS & WASM: Get rid of QOverload
Add a context object into some lambdas.
Change-Id: I72631aeb36703f8f335f3819796fb52148f1b377
Reviewed-by: Alessandro Portale <[email protected]>
Reviewed-by: Eike Ziller <[email protected]>
Reviewed-by: Qt CI Bot <[email protected]>
Reviewed-by: <[email protected]>
Diffstat (limited to 'src/plugins/android/androidplugin.cpp')
-rw-r--r-- | src/plugins/android/androidplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/android/androidplugin.cpp b/src/plugins/android/androidplugin.cpp index b5d19c12e7f..e7ce368927c 100644 --- a/src/plugins/android/androidplugin.cpp +++ b/src/plugins/android/androidplugin.cpp @@ -199,7 +199,7 @@ void AndroidPlugin::askUserAboutAndroidSetup() info.addCustomButton(tr("Configure Android"), [this] { Core::ICore::infoBar()->removeInfo(kSetupAndroidSetting); Core::ICore::infoBar()->globallySuppressInfo(kSetupAndroidSetting); - QTimer::singleShot(0, this, [this]() { d->potentialKit.executeFromMenu(); }); + QTimer::singleShot(0, this, [this] { d->potentialKit.executeFromMenu(); }); }); Core::ICore::infoBar()->addInfo(info); } |