Utils: Rename QtcProcess -> Process

Task-number: QTCREATORBUG-29102
Change-Id: Ibc264f9db6a32206e4097766ee3f7d0b35225a5c
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2023-05-03 16:00:22 +02:00
parent e5051bbfde
commit 470c95c94b
244 changed files with 769 additions and 769 deletions

View File

@@ -171,7 +171,7 @@ SubversionDiffEditorController::SubversionDiffEditorController(IDocument *docume
const TreeStorage<QString> diffInputStorage = inputStorage();
const auto setupDescription = [this](QtcProcess &process) {
const auto setupDescription = [this](Process &process) {
if (m_changeNumber == 0)
return TaskAction::StopWithDone;
setupCommand(process, {"log", "-r", QString::number(m_changeNumber)});
@@ -181,14 +181,14 @@ SubversionDiffEditorController::SubversionDiffEditorController(IDocument *docume
setDescription(Tr::tr("Waiting for data..."));
return TaskAction::Continue;
};
const auto onDescriptionDone = [this](const QtcProcess &process) {
const auto onDescriptionDone = [this](const Process &process) {
setDescription(process.cleanedStdOut());
};
const auto onDescriptionError = [this](const QtcProcess &) {
const auto onDescriptionError = [this](const Process &) {
setDescription({});
};
const auto setupDiff = [this](QtcProcess &process) {
const auto setupDiff = [this](Process &process) {
QStringList args = QStringList{"diff"} << "--internal-diff";
if (ignoreWhitespace())
args << "-x" << "-uw";
@@ -202,7 +202,7 @@ SubversionDiffEditorController::SubversionDiffEditorController(IDocument *docume
command << SubversionClient::AddAuthOptions();
process.setCommand(command);
};
const auto onDiffDone = [diffInputStorage](const QtcProcess &process) {
const auto onDiffDone = [diffInputStorage](const Process &process) {
*diffInputStorage = process.cleanedStdOut();
};