AutotoolsPM: Get rid of unused signal

Change-Id: I0e82b1cc7be054f6be7b54c043e3b3a15fdb2a88
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2024-07-15 10:18:12 +02:00
parent c3589ccfaa
commit b9c2f197ff
2 changed files with 0 additions and 9 deletions

View File

@@ -11,7 +11,6 @@ MakefileParserThread::MakefileParserThread(ProjectExplorer::BuildSystem *bs)
: m_parser(bs->projectFilePath().toString()),
m_guard(bs->guardParsingRun())
{
connect(&m_parser, &MakefileParser::status, this, &MakefileParserThread::status);
connect(this, &QThread::finished, this, &MakefileParserThread::done, Qt::QueuedConnection);
}

View File

@@ -98,14 +98,6 @@ public:
void cancel();
signals:
/**
* Is emitted periodically during parsing the Makefile.am files
* and the sub directories. \p status provides a translated
* string, that can be shown to indicate the current state
* of the parsing.
*/
void status(const QString &status);
/**
* Similar to finished, but emitted from MakefileParserThread thread, i.e. from the
* thread where the MakefileParserThread lives in, not the tread that it creates.