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

@@ -264,7 +264,7 @@ void OutputFormatter::addLineParser(OutputLineParser *parser)
void OutputFormatter::setupLineParser(OutputLineParser *parser)
{
parser->setFileFinder(&d->fileFinder);
connect(parser, &OutputLineParser::newSearchDir, this, &OutputFormatter::addSearchDir);
connect(parser, &OutputLineParser::newSearchDirFound, this, &OutputFormatter::addSearchDir);
connect(parser, &OutputLineParser::searchDirExpired, this, &OutputFormatter::dropSearchDir);
}