ProjectExplorer: Fix copy-paste error in AbstractProcessStep

Change-Id: Id345f3c2c51d4ac4b773113c7e22533ebcbcfaf7
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Kandeler
2020-04-01 17:41:37 +02:00
parent 35c0deac5e
commit 7834f172ce

View File

@@ -474,7 +474,7 @@ void AbstractProcessStep::slotProcessFinished(int, QProcess::ExitStatus)
const QString stdOutLine = process ? QString::fromLocal8Bit(process->readAllStandardOutput()) : QString(); const QString stdOutLine = process ? QString::fromLocal8Bit(process->readAllStandardOutput()) : QString();
for (const QString &l : stdOutLine.split('\n')) for (const QString &l : stdOutLine.split('\n'))
stdError(l); stdOutput(l);
cleanUp(process); cleanUp(process);
} }