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:
Jarek Kobus
2023-08-07 16:59:53 +02:00
parent 4e56305a01
commit 43dca6ec78
2 changed files with 0 additions and 8 deletions

View File

@@ -83,12 +83,6 @@ void ThreadedParser::parse(QIODevice *device)
connect(parser, &Parser::internalError,
this, &ThreadedParser::slotInternalError,
Qt::QueuedConnection);
connect(parser, &Parser::errorCount,
this, &ThreadedParser::errorCount,
Qt::QueuedConnection);
connect(parser, &Parser::suppressionCount,
this, &ThreadedParser::suppressionCount,
Qt::QueuedConnection);
connect(parser, &Parser::finished,
this, &ThreadedParser::finished,
Qt::QueuedConnection);

View File

@@ -43,8 +43,6 @@ signals:
void status(const Valgrind::XmlProtocol::Status &status);
void error(const Valgrind::XmlProtocol::Error &error);
void internalError(const QString &errorString);
void errorCount(qint64 unique, qint64 count);
void suppressionCount(const QString &name, qint64 count);
void finished();
private: