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

@@ -137,7 +137,7 @@ TerminalWidget::~TerminalWidget()
void TerminalWidget::setupPty()
{
m_process = std::make_unique<QtcProcess>();
m_process = std::make_unique<Process>();
CommandLine shellCommand = m_openParameters.shellCommand.value_or(
CommandLine{TerminalSettings::instance().shell.filePath(),
@@ -163,11 +163,11 @@ void TerminalWidget::setupPty()
m_surface->shellIntegration()->prepareProcess(*m_process.get());
}
connect(m_process.get(), &QtcProcess::readyReadStandardOutput, this, [this]() {
connect(m_process.get(), &Process::readyReadStandardOutput, this, [this]() {
onReadyRead(false);
});
connect(m_process.get(), &QtcProcess::done, this, [this] {
connect(m_process.get(), &Process::done, this, [this] {
if (m_process) {
if (m_process->exitCode() != 0) {
QByteArray msg = QString("\r\n\033[31mProcess exited with code: %1")
@@ -206,7 +206,7 @@ void TerminalWidget::setupPty()
}
});
connect(m_process.get(), &QtcProcess::started, this, [this] {
connect(m_process.get(), &Process::started, this, [this] {
if (m_shellName.isEmpty())
m_shellName = m_process->commandLine().executable().fileName();
if (HostOsInfo::isWindowsHost() && m_shellName.endsWith(QTC_WIN_EXE_SUFFIX))