Tasking::Process: Rename Process into ProcessTask

Rename QtcProcessAdapter into ProcessTaskAdapter.

Task-number: QTCREATORBUG-29102
Change-Id: I1902c7176da75db60d70125f505084a2ea5ba774
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2023-05-03 14:06:15 +02:00
parent 6d805195f6
commit 1d69f943aa
23 changed files with 49 additions and 49 deletions

View File

@@ -414,7 +414,7 @@ void BranchModel::refresh(const FilePath &workingDirectory, ShowError showError)
}
using namespace Tasking;
const Process topRevisionProc =
const ProcessTask topRevisionProc =
d->client->topRevision(workingDirectory,
[=](const QString &ref, const QDateTime &dateTime) {
d->currentSha = ref;
@@ -471,7 +471,7 @@ void BranchModel::refresh(const FilePath &workingDirectory, ShowError showError)
const Group root {
topRevisionProc,
Process(setupForEachRef, forEachRefDone, forEachRefError),
ProcessTask(setupForEachRef, forEachRefDone, forEachRefError),
OnGroupDone(finalize),
OnGroupError(finalize)
};