forked from qt-creator/qt-creator
ProjectExplorer: Replace some calls to IOutputParser::taskAdded
... where the intention was to simply emit the addTask signal. Change-Id: I74fb625cd8683d5f49f4a8e7b82086b3a3bccb38 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -76,7 +76,7 @@ void XcodebuildParser::stdOutput(const QString &line)
|
||||
tr("Replacing signature"),
|
||||
FilePath::fromString(
|
||||
lne.left(lne.size() - QLatin1String(signatureChangeEndsWithPattern).size())));
|
||||
taskAdded(task, 1);
|
||||
emit addTask(task, 1);
|
||||
return;
|
||||
}
|
||||
IOutputParser::stdError(line);
|
||||
@@ -92,7 +92,7 @@ void XcodebuildParser::stdError(const QString &line)
|
||||
++m_fatalErrorCount;
|
||||
m_xcodeBuildParserState = UnknownXcodebuildState;
|
||||
// unfortunately the m_lastTarget, m_lastProject might not be in sync
|
||||
taskAdded(CompileTask(Task::Error, tr("Xcodebuild failed.")));
|
||||
emit addTask(CompileTask(Task::Error, tr("Xcodebuild failed.")));
|
||||
return;
|
||||
}
|
||||
if (m_xcodeBuildParserState == OutsideXcodebuild) { // also forward if UnknownXcodebuildState ?
|
||||
|
@@ -80,7 +80,7 @@ void QtTestParser::stdOutput(const QString &line)
|
||||
void QtTestParser::emitCurrentTask()
|
||||
{
|
||||
if (!m_currentTask.isNull()) {
|
||||
emit taskAdded(m_currentTask);
|
||||
emit addTask(m_currentTask);
|
||||
m_currentTask.clear();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user