summaryrefslogtreecommitdiffstats
path: root/tests/auto/qbluetoothlocaldevice
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 /tests/auto/qbluetoothlocaldevice
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 'tests/auto/qbluetoothlocaldevice')
-rw-r--r--tests/auto/qbluetoothlocaldevice/tst_qbluetoothlocaldevice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qbluetoothlocaldevice/tst_qbluetoothlocaldevice.cpp b/tests/auto/qbluetoothlocaldevice/tst_qbluetoothlocaldevice.cpp
index abe19c0b..3285592e 100644
--- a/tests/auto/qbluetoothlocaldevice/tst_qbluetoothlocaldevice.cpp
+++ b/tests/auto/qbluetoothlocaldevice/tst_qbluetoothlocaldevice.cpp
@@ -337,7 +337,7 @@ void tst_QBluetoothLocalDevice::tst_pairDevice()
localDevice.powerOn();
QVERIFY(localDevice.hostMode() != QBluetoothLocalDevice::HostPoweredOff);
- QSignalSpy pairingSpy(&localDevice, SIGNAL(pairingFinished(const QBluetoothAddress &,QBluetoothLocalDevice::Pairing)) );
+ QSignalSpy pairingSpy(&localDevice, SIGNAL(pairingFinished(QBluetoothAddress,QBluetoothLocalDevice::Pairing)) );
QSignalSpy errorSpy(&localDevice, SIGNAL(error(QBluetoothLocalDevice::Error)));
// there should be no signals yet
QVERIFY(pairingSpy.isValid());