summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/qnx
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2012-07-12 22:35:10 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-13 12:09:42 +0200
commit02faddca534f113e1dc42348b3a801b7ac8b65a3 (patch)
treecb924d04b4d2061b6a9caeb2c538244bb81b5f0a /src/plugins/platforms/qnx
parentd7d9364c9c6e2b30bf2b6933f36060d078e903ef (diff)
QNX: normalize signals/slots
This is the result of running util/normalize --modify from Qt 4.7 with manual review. Change-Id: I9229c3c52ba785194469ad51aba0c3af0c058894 Reviewed-by: Laszlo Papp <lpapp@kde.org> Reviewed-by: Kevin Krammer <kevin.krammer@kdab.com> Reviewed-by: Thomas McGuire <thomas.mcguire@kdab.com> Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/plugins/platforms/qnx')
-rw-r--r--src/plugins/platforms/qnx/qqnxintegration.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/platforms/qnx/qqnxintegration.cpp b/src/plugins/platforms/qnx/qqnxintegration.cpp
index 538f8fa59c..ad2da5e3c9 100644
--- a/src/plugins/platforms/qnx/qqnxintegration.cpp
+++ b/src/plugins/platforms/qnx/qqnxintegration.cpp
@@ -442,10 +442,10 @@ void QQnxIntegration::createDisplays()
m_screens.append(screen);
screenAdded(screen);
- QObject::connect(m_screenEventHandler, SIGNAL(newWindowCreated(void *)),
- screen, SLOT(newWindowCreated(void *)));
- QObject::connect(m_screenEventHandler, SIGNAL(windowClosed(void *)),
- screen, SLOT(windowClosed(void *)));
+ QObject::connect(m_screenEventHandler, SIGNAL(newWindowCreated(void*)),
+ screen, SLOT(newWindowCreated(void*)));
+ QObject::connect(m_screenEventHandler, SIGNAL(windowClosed(void*)),
+ screen, SLOT(windowClosed(void*)));
QObject::connect(m_navigatorEventHandler, SIGNAL(rotationChanged(int)), screen, SLOT(setRotation(int)));
QObject::connect(m_navigatorEventHandler, SIGNAL(windowGroupActivated(QByteArray)), screen, SLOT(activateWindowGroup(QByteArray)));