summaryrefslogtreecommitdiff
path: root/src/plugins/valgrind/xmlprotocol
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@nokia.com>2012-03-05 22:30:59 +0100
committerRobert Löhning <robert.loehning@nokia.com>2012-03-06 12:46:52 +0100
commitb41171c8473e7202f67aaa0f7ace1bf40e02919e (patch)
tree47de72e1d07c7bd86f7f576417ae6c32671c12a5 /src/plugins/valgrind/xmlprotocol
parent9f05e6495dfeda3b78ba2da356832367194633bb (diff)
downloadqt-creator-b41171c8473e7202f67aaa0f7ace1bf40e02919e.tar.gz
Normalized connect()s
Change-Id: Id353ab140a46e06ffc3abf667ab3b234e749e17c Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
Diffstat (limited to 'src/plugins/valgrind/xmlprotocol')
-rw-r--r--src/plugins/valgrind/xmlprotocol/threadedparser.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/valgrind/xmlprotocol/threadedparser.cpp b/src/plugins/valgrind/xmlprotocol/threadedparser.cpp
index 4d5acf855b..489f7e8ce0 100644
--- a/src/plugins/valgrind/xmlprotocol/threadedparser.cpp
+++ b/src/plugins/valgrind/xmlprotocol/threadedparser.cpp
@@ -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);