Skip to content
Snippets Groups Projects
Commit 5ba47738 authored by Tobias Hunger's avatar Tobias Hunger
Browse files

Fix parsing of CMake progress indicators

Reviewed-by: con
parent 8d70ab27
No related branches found
No related tags found
No related merge requests found
......@@ -162,7 +162,7 @@ bool MakeStep::immutable() const
return true;
}
void MakeStep::stdOut(const QString &line)
void MakeStep::stdOutput(const QString &line)
{
if (m_percentProgress.indexIn(line) != -1) {
bool ok = false;
......
......@@ -79,7 +79,7 @@ protected:
bool fromMap(const QVariantMap &map);
// For parsing [ 76%]
virtual void stdOut(const QString &line);
virtual void stdOutput(const QString &line);
private:
void ctor();
......
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