Skip to content
Snippets Groups Projects
Commit 7aaaade1 authored by Jörg Bornemann's avatar Jörg Bornemann
Browse files

QbsProjectManager: Add missing emit keywords


Found by clazy.

Change-Id: I55126cc2f6d19ea9f713f4c83cbf02e48d5ddf8e
Reviewed-by: Jake Petroules's avatarJake Petroules <jake.petroules@qt.io>
Reviewed-by: default avatarChristian Kandeler <christian.kandeler@qt.io>
parent bb966352
No related branches found
No related tags found
No related merge requests found
......@@ -391,15 +391,15 @@ void QbsBuildStep::handleProcessResultReport(const qbs::ProcessResult &result)
QString commandline = result.executableFilePath() + ' '
+ Utils::QtcProcess::joinArgs(result.arguments());
addOutput(commandline, OutputFormat::Stdout);
emit addOutput(commandline, OutputFormat::Stdout);
foreach (const QString &line, result.stdErr()) {
m_parser->stdError(line);
addOutput(line, OutputFormat::Stderr);
emit addOutput(line, OutputFormat::Stderr);
}
foreach (const QString &line, result.stdOut()) {
m_parser->stdOutput(line);
addOutput(line, OutputFormat::Stdout);
emit addOutput(line, OutputFormat::Stdout);
}
m_parser->flush();
}
......
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