forked from qt-creator/qt-creator
Fix parsing of CMake progress indicators
Reviewed-by: con
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user