diff options
| author | Jarek Kobus <[email protected]> | 2024-02-15 22:54:03 +0100 |
|---|---|---|
| committer | Jarek Kobus <[email protected]> | 2024-02-16 06:21:59 +0000 |
| commit | f1f4422dcea46d982feaca177c7b18aedd79486a (patch) | |
| tree | 0b0cfdb09afa03328adfd404e3b56e646f2a49bc /src/plugins/python/pythonsettings.cpp | |
| parent | 36241b4462f7a61ffadd3e51d6ea24ece2dbd4c9 (diff) | |
PythonSettings: Reuse Tasking::nullItem
Change-Id: I50675730fa7a7e228b151213610996456a8eacf4
Reviewed-by: <[email protected]>
Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/python/pythonsettings.cpp')
| -rw-r--r-- | src/plugins/python/pythonsettings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/python/pythonsettings.cpp b/src/plugins/python/pythonsettings.cpp index d9f5f74e9ff..b144f4a7e84 100644 --- a/src/plugins/python/pythonsettings.cpp +++ b/src/plugins/python/pythonsettings.cpp @@ -773,7 +773,7 @@ PythonSettings::PythonSettings() const Tasking::Group recipe { Tasking::finishAllAndSuccess, Utils::HostOsInfo::isWindowsHost() - ? AsyncTask<QList<Interpreter>>(onRegistrySetup, onTaskDone) : Tasking::GroupItem({}), + ? AsyncTask<QList<Interpreter>>(onRegistrySetup, onTaskDone) : Tasking::nullItem, AsyncTask<QList<Interpreter>>(onPathSetup, onTaskDone) }; m_taskTreeRunner.start(recipe); |
