aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/squish/squishserverprocess.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/squish/squishserverprocess.cpp')
-rw-r--r--src/plugins/squish/squishserverprocess.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/squish/squishserverprocess.cpp b/src/plugins/squish/squishserverprocess.cpp
index 4d7bb2ef97f..9e4b9741433 100644
--- a/src/plugins/squish/squishserverprocess.cpp
+++ b/src/plugins/squish/squishserverprocess.cpp
@@ -10,7 +10,7 @@ namespace Squish::Internal {
SquishServerProcess::SquishServerProcess(QObject *parent)
: SquishProcessBase(parent)
{
- connect(&m_process, &Utils::QtcProcess::readyReadStandardOutput,
+ connect(&m_process, &Utils::Process::readyReadStandardOutput,
this, &SquishServerProcess::onStandardOutput);
}
@@ -25,7 +25,7 @@ void SquishServerProcess::start(const Utils::CommandLine &commandLine,
void SquishServerProcess::stop()
{
if (m_process.state() != QProcess::NotRunning && m_serverPort > 0) {
- Utils::QtcProcess serverKiller;
+ Utils::Process serverKiller;
QStringList args;
args << "--stop" << "--port" << QString::number(m_serverPort);
serverKiller.setCommand({m_process.commandLine().executable(), args});