Commit 9a8319a3 authored by Michael Brasser's avatar Michael Brasser Committed by The Qt Project
Browse files

Use correct method signature for slots.


Change-Id: I09b5df218ad22afefe8a615c80585aa3fb46006f
Reviewed-by: default avatarRobin Burchell <robin+qt@viroteck.net>
Reviewed-by: default avatarLorn Potter <lorn.potter@jollamobile.com>
Showing with 2 additions and 2 deletions
......@@ -68,9 +68,9 @@ SensorfwSensorBase::SensorfwSensorBase(QSensor *sensor)
QDBusServiceWatcher::WatchForUnregistration, this);
connect(watcher, SIGNAL(serviceRegistered(QString)),
this, SLOT(connectToSensord(QString)));
this, SLOT(connectToSensord()));
connect(watcher, SIGNAL(serviceUnregistered(QString)),
this, SLOT(sensordUnregistered(QString)));
this, SLOT(sensordUnregistered()));
m_available = QDBusConnection::systemBus().interface()->isServiceRegistered("com.nokia.SensorService");
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment