summaryrefslogtreecommitdiffstats
path: root/src/plugins/generic/meego
diff options
context:
space:
mode:
authorMarc Mutz <marc.mutz@kdab.com>2012-07-12 22:34:55 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-13 04:17:37 +0200
commit279893cd5f2b61e11540b2cc656dacfd88322ea9 (patch)
treea90d6fff151909990109c06307669fdfab020ae1 /src/plugins/generic/meego
parentf108fceb2c548687a115ec7ba6186f674db34a02 (diff)
meego: normalize signals/slots
This is the result of running util/normalize --modify from Qt 4.7 with manual review. Change-Id: I9dcff4e0982be616313e9f162203a21b447df64b Reviewed-by: Laszlo Papp <lpapp@kde.org> Reviewed-by: Girish Ramakrishnan <girish.1.ramakrishnan@nokia.com>
Diffstat (limited to 'src/plugins/generic/meego')
-rw-r--r--src/plugins/generic/meego/contextkitproperty.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/generic/meego/contextkitproperty.cpp b/src/plugins/generic/meego/contextkitproperty.cpp
index 616983dbfc..743cdaafac 100644
--- a/src/plugins/generic/meego/contextkitproperty.cpp
+++ b/src/plugins/generic/meego/contextkitproperty.cpp
@@ -59,8 +59,8 @@ QContextKitProperty::QContextKitProperty(const QString& serviceName, const QStri
QLatin1String("org.maemo.contextkit.Property"), QDBusConnection::systemBus())
{
propertyInterface.call("Subscribe");
- connect(&propertyInterface, SIGNAL(ValueChanged(QVariantList, qulonglong)),
- this, SLOT(cacheValue(QVariantList, qulonglong)));
+ connect(&propertyInterface, SIGNAL(ValueChanged(QVariantList,qulonglong)),
+ this, SLOT(cacheValue(QVariantList,qulonglong)));
QDBusMessage reply = propertyInterface.call("Get");
if (reply.type() == QDBusMessage::ReplyMessage)