aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/testoutputreader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/autotest/testoutputreader.cpp')
-rw-r--r--src/plugins/autotest/testoutputreader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/autotest/testoutputreader.cpp b/src/plugins/autotest/testoutputreader.cpp
index e05fe8fdddb..48bab930662 100644
--- a/src/plugins/autotest/testoutputreader.cpp
+++ b/src/plugins/autotest/testoutputreader.cpp
@@ -21,7 +21,7 @@ FilePath TestOutputReader::constructSourceFilePath(const FilePath &path, const Q
return filePath.isReadableFile() ? filePath : FilePath();
}
-TestOutputReader::TestOutputReader(QtcProcess *testApplication, const FilePath &buildDirectory)
+TestOutputReader::TestOutputReader(Process *testApplication, const FilePath &buildDirectory)
: m_buildDir(buildDirectory)
{
auto chopLineBreak = [](QByteArray line) {
@@ -33,7 +33,7 @@ TestOutputReader::TestOutputReader(QtcProcess *testApplication, const FilePath &
};
if (testApplication) {
- connect(testApplication, &QtcProcess::started, this, [this, testApplication] {
+ connect(testApplication, &Process::started, this, [this, testApplication] {
m_id = testApplication->commandLine().executable().toUserOutput();
});
testApplication->setStdOutLineCallback([this, &chopLineBreak](const QString &line) {