summaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/btscanner/service.cpp
diff options
context:
space:
mode:
authorSergio Ahumada <sahumada@blackberry.com>2014-03-02 11:22:48 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-03 09:50:50 +0100
commit5ac9aebf83bc7cc4025004232c32dbd62cf25ba3 (patch)
tree59f9ac0195eec649a8b3fcb58b36cc6f05467b41 /examples/bluetooth/btscanner/service.cpp
parent7e58d64a7714f214a2218ffac4f27206e7bb0d15 (diff)
Prefer to use normalised signal/slot signatures
Change-Id: Idd8127e577be7381e170dab296d8f0564c478020 Reviewed-by: Marc Mutz <marc.mutz@kdab.com> Reviewed-by: Alex Blasche <alexander.blasche@digia.com>
Diffstat (limited to 'examples/bluetooth/btscanner/service.cpp')
-rw-r--r--examples/bluetooth/btscanner/service.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/bluetooth/btscanner/service.cpp b/examples/bluetooth/btscanner/service.cpp
index dedd3770..d9172d69 100644
--- a/examples/bluetooth/btscanner/service.cpp
+++ b/examples/bluetooth/btscanner/service.cpp
@@ -71,8 +71,8 @@ ServiceDiscoveryDialog::ServiceDiscoveryDialog(const QString &name,
setWindowTitle(name);
- connect(discoveryAgent, SIGNAL(serviceDiscovered(const QBluetoothServiceInfo&)),
- this, SLOT(addService(const QBluetoothServiceInfo&)));
+ connect(discoveryAgent, SIGNAL(serviceDiscovered(QBluetoothServiceInfo)),
+ this, SLOT(addService(QBluetoothServiceInfo)));
connect(discoveryAgent, SIGNAL(finished()), ui->status, SLOT(hide()));
discoveryAgent->start();