summaryrefslogtreecommitdiffstats
path: root/src/plugins/bearer/connman/qconnmanengine.cpp
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2012-07-12 22:33:33 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-13 12:09:42 +0200
commitd7d9364c9c6e2b30bf2b6933f36060d078e903ef (patch)
treeda8d2b07c7481a79369a4d015015a0fea1260ed1 /src/plugins/bearer/connman/qconnmanengine.cpp
parent8c148a2eec9059f2ab4104fb19352699f2d1b3d0 (diff)
plugins/bearer: normalize signals/slots
This is the result of running util/normalize --modify from Qt 4.7 with manual review. Change-Id: I7c9539056a4434ed10a0255152eac1781f7833be Reviewed-by: Laszlo Papp <lpapp@kde.org> Reviewed-by: Stephen Kelly <stephen.kelly@kdab.com>
Diffstat (limited to 'src/plugins/bearer/connman/qconnmanengine.cpp')
-rw-r--r--src/plugins/bearer/connman/qconnmanengine.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/bearer/connman/qconnmanengine.cpp b/src/plugins/bearer/connman/qconnmanengine.cpp
index 453ebc7c45..9a09c3feb8 100644
--- a/src/plugins/bearer/connman/qconnmanengine.cpp
+++ b/src/plugins/bearer/connman/qconnmanengine.cpp
@@ -510,7 +510,7 @@ void QConnmanEngine::removeConfiguration(const QString &id)
QConnmanServiceInterface serv(service);
disconnect(&serv,SIGNAL(propertyChangedContext(QString,QString,QDBusVariant)),
- this,SLOT(servicePropertyChangedContext(QString,QString, QDBusVariant)));
+ this,SLOT(servicePropertyChangedContext(QString,QString,QDBusVariant)));
serviceNetworks.removeOne(service);
@@ -533,7 +533,7 @@ void QConnmanEngine::addServiceConfiguration(const QString &servicePath)
serviceNetworks.append(servicePath);
connect(serv,SIGNAL(propertyChangedContext(QString,QString,QDBusVariant)),
- this,SLOT(servicePropertyChangedContext(QString,QString, QDBusVariant)));
+ this,SLOT(servicePropertyChangedContext(QString,QString,QDBusVariant)));
QNetworkConfigurationPrivate* cpPriv = new QNetworkConfigurationPrivate();
QString networkName = serv->getName();