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/androiddevice.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/androiddevice.cpp')
-rw-r--r-- | src/plugins/android/androiddevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/android/androiddevice.cpp b/src/plugins/android/androiddevice.cpp index 037049a95a8..8fbd2402352 100644 --- a/src/plugins/android/androiddevice.cpp +++ b/src/plugins/android/androiddevice.cpp @@ -685,7 +685,7 @@ void AndroidDeviceManager::setupDevicesWatcher() m_avdFileSystemWatcher.addPath(avdPath.toString()); connect(&m_avdsFutureWatcher, &QFutureWatcherBase::finished, this, &AndroidDeviceManager::HandleAvdsListChange); - connect(&m_avdFileSystemWatcher, &QFileSystemWatcher::directoryChanged, this, [this]() { + connect(&m_avdFileSystemWatcher, &QFileSystemWatcher::directoryChanged, this, [this] { // If the avd list upate command is running no need to call it again. if (!m_avdsFutureWatcher.isRunning()) updateAvdsList(); |