forked from qt-creator/qt-creator
AutotoolsPM: Get rid of unused signal
Change-Id: I0e82b1cc7be054f6be7b54c043e3b3a15fdb2a88 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user