Utils: Fix output formatter "new searchDir found" signalling

Change-Id: Id9bc5cb0641dbac902b7d5af8ee3d00e0308478e
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Alessandro Portale
2021-02-14 00:19:39 +01:00
parent 5cbf323014
commit 38a38cd0ed
6 changed files with 6 additions and 6 deletions

View File

@@ -55,7 +55,7 @@ void CMakeParser::setSourceDirectory(const QString &sourceDir)
if (m_sourceDirectory)
emit searchDirExpired(FilePath::fromString(m_sourceDirectory.value().path()));
m_sourceDirectory = QDir(sourceDir);
emit addSearchDir(FilePath::fromString(sourceDir));
emit newSearchDirFound(FilePath::fromString(sourceDir));
}
OutputLineParser::Result CMakeParser::handleLine(const QString &line, OutputFormat type)