forked from qt-creator/qt-creator
ProjectExplorer: Fix copy-paste error in AbstractProcessStep
Change-Id: Id345f3c2c51d4ac4b773113c7e22533ebcbcfaf7 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user