forked from qt-creator/qt-creator
ThreadedParser: Remove unused signals
Change-Id: Ib158902f9d433cc48bdba58aa6b685aa7d41f5b4 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -83,12 +83,6 @@ void ThreadedParser::parse(QIODevice *device)
|
|||||||
connect(parser, &Parser::internalError,
|
connect(parser, &Parser::internalError,
|
||||||
this, &ThreadedParser::slotInternalError,
|
this, &ThreadedParser::slotInternalError,
|
||||||
Qt::QueuedConnection);
|
Qt::QueuedConnection);
|
||||||
connect(parser, &Parser::errorCount,
|
|
||||||
this, &ThreadedParser::errorCount,
|
|
||||||
Qt::QueuedConnection);
|
|
||||||
connect(parser, &Parser::suppressionCount,
|
|
||||||
this, &ThreadedParser::suppressionCount,
|
|
||||||
Qt::QueuedConnection);
|
|
||||||
connect(parser, &Parser::finished,
|
connect(parser, &Parser::finished,
|
||||||
this, &ThreadedParser::finished,
|
this, &ThreadedParser::finished,
|
||||||
Qt::QueuedConnection);
|
Qt::QueuedConnection);
|
||||||
|
|||||||
@@ -43,8 +43,6 @@ signals:
|
|||||||
void status(const Valgrind::XmlProtocol::Status &status);
|
void status(const Valgrind::XmlProtocol::Status &status);
|
||||||
void error(const Valgrind::XmlProtocol::Error &error);
|
void error(const Valgrind::XmlProtocol::Error &error);
|
||||||
void internalError(const QString &errorString);
|
void internalError(const QString &errorString);
|
||||||
void errorCount(qint64 unique, qint64 count);
|
|
||||||
void suppressionCount(const QString &name, qint64 count);
|
|
||||||
void finished();
|
void finished();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|||||||
Reference in New Issue
Block a user