Skip to content
Snippets Groups Projects
Commit fbb82097 authored by dt's avatar dt
Browse files

Don't trim lines before pushing them to the parsers

Reviewed-By: hunger
parent 3976d164
No related branches found
No related tags found
No related merge requests found
...@@ -220,7 +220,7 @@ void AbstractProcessStep::processReadyReadStdOutput() ...@@ -220,7 +220,7 @@ void AbstractProcessStep::processReadyReadStdOutput()
{ {
m_process->setReadChannel(QProcess::StandardOutput); m_process->setReadChannel(QProcess::StandardOutput);
while (m_process->canReadLine()) { while (m_process->canReadLine()) {
QString line = QString::fromLocal8Bit(m_process->readLine()).trimmed(); QString line = QString::fromLocal8Bit(m_process->readLine());
stdOutput(line); stdOutput(line);
} }
} }
...@@ -236,7 +236,7 @@ void AbstractProcessStep::processReadyReadStdError() ...@@ -236,7 +236,7 @@ void AbstractProcessStep::processReadyReadStdError()
{ {
m_process->setReadChannel(QProcess::StandardError); m_process->setReadChannel(QProcess::StandardError);
while (m_process->canReadLine()) { while (m_process->canReadLine()) {
QString line = QString::fromLocal8Bit(m_process->readLine()).trimmed(); QString line = QString::fromLocal8Bit(m_process->readLine());
stdError(line); stdError(line);
} }
} }
...@@ -308,11 +308,11 @@ void AbstractProcessStep::outputAdded(const QString &string) ...@@ -308,11 +308,11 @@ void AbstractProcessStep::outputAdded(const QString &string)
void AbstractProcessStep::slotProcessFinished(int, QProcess::ExitStatus) void AbstractProcessStep::slotProcessFinished(int, QProcess::ExitStatus)
{ {
QString line = QString::fromLocal8Bit(m_process->readAllStandardError()).trimmed(); QString line = QString::fromLocal8Bit(m_process->readAllStandardError());
if (!line.isEmpty()) if (!line.isEmpty())
stdError(line); stdError(line);
line = QString::fromLocal8Bit(m_process->readAllStandardOutput()).trimmed(); line = QString::fromLocal8Bit(m_process->readAllStandardOutput());
if (!line.isEmpty()) if (!line.isEmpty())
stdOutput(line); stdOutput(line);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment