forked from qt-creator/qt-creator
Normalized connect()s
Change-Id: Id353ab140a46e06ffc3abf667ab3b234e749e17c Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
This commit is contained in:
committed by
Robert Löhning
parent
9f05e6495d
commit
b41171c847
@@ -119,11 +119,11 @@ void ThreadedParser::parse(QIODevice *device)
|
||||
connect(parser, SIGNAL(internalError(QString)),
|
||||
SLOT(slotInternalError(QString)),
|
||||
Qt::QueuedConnection);
|
||||
connect(parser, SIGNAL(errorCount(qint64, qint64)),
|
||||
SIGNAL(errorCount(qint64, qint64)),
|
||||
connect(parser, SIGNAL(errorCount(qint64,qint64)),
|
||||
SIGNAL(errorCount(qint64,qint64)),
|
||||
Qt::QueuedConnection);
|
||||
connect(parser, SIGNAL(suppressionCount(QString, qint64)),
|
||||
SIGNAL(suppressionCount(QString, qint64)),
|
||||
connect(parser, SIGNAL(suppressionCount(QString,qint64)),
|
||||
SIGNAL(suppressionCount(QString,qint64)),
|
||||
Qt::QueuedConnection);
|
||||
connect(parser, SIGNAL(finished()), SIGNAL(finished()),
|
||||
Qt::QueuedConnection);
|
||||
|
||||
Reference in New Issue
Block a user