aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/valgrind/valgrindrunner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/valgrind/valgrindrunner.cpp')
-rw-r--r--src/plugins/valgrind/valgrindrunner.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/valgrind/valgrindrunner.cpp b/src/plugins/valgrind/valgrindrunner.cpp
index ef84fba6759..3750217ad7c 100644
--- a/src/plugins/valgrind/valgrindrunner.cpp
+++ b/src/plugins/valgrind/valgrindrunner.cpp
@@ -25,18 +25,18 @@ class ValgrindRunner::Private : public QObject
{
public:
Private(ValgrindRunner *owner) : q(owner) {
- connect(&m_process, &QtcProcess::started, this, [this] {
+ connect(&m_process, &Process::started, this, [this] {
emit q->valgrindStarted(m_process.processId());
});
- connect(&m_process, &QtcProcess::done, this, [this] {
+ connect(&m_process, &Process::done, this, [this] {
if (m_process.result() != ProcessResult::FinishedWithSuccess)
emit q->processErrorReceived(m_process.errorString(), m_process.error());
emit q->finished();
});
- connect(&m_process, &QtcProcess::readyReadStandardOutput, this, [this] {
+ connect(&m_process, &Process::readyReadStandardOutput, this, [this] {
emit q->appendMessage(m_process.readAllStandardOutput(), StdOutFormat);
});
- connect(&m_process, &QtcProcess::readyReadStandardError, this, [this] {
+ connect(&m_process, &Process::readyReadStandardError, this, [this] {
emit q->appendMessage(m_process.readAllStandardError(), StdErrFormat);
});
@@ -53,7 +53,7 @@ public:
Runnable m_debuggee;
CommandLine m_command;
- QtcProcess m_process;
+ Process m_process;
QHostAddress m_localServerAddress;