TaskTree: Get rid of unneeded done handlers' arguments

Task-number: QTCREATORBUG-29834
Change-Id: I236dec27a292a1b006b7001d01ce620960380de9
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
Jarek Kobus
2023-11-02 23:19:49 +01:00
parent 34cef824b5
commit b5f77f6d55
12 changed files with 23 additions and 23 deletions

View File

@@ -164,7 +164,7 @@ GroupItem AbstractProcessStep::defaultProcessTask()
const auto onSetup = [this](Process &process) {
return setupProcess(process) ? SetupResult::Continue : SetupResult::StopWithError;
};
const auto onDone = [this](const Process &process, bool) { handleProcessDone(process); };
const auto onDone = [this](const Process &process) { handleProcessDone(process); };
return ProcessTask(onSetup, onDone);
}