summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/bluetooth/qbluetoothlocaldevice.cpp6
-rw-r--r--src/bluetooth/qbluetoothlocaldevice.h4
2 files changed, 5 insertions, 5 deletions
diff --git a/src/bluetooth/qbluetoothlocaldevice.cpp b/src/bluetooth/qbluetoothlocaldevice.cpp
index da3c4fa7..fe13a2de 100644
--- a/src/bluetooth/qbluetoothlocaldevice.cpp
+++ b/src/bluetooth/qbluetoothlocaldevice.cpp
@@ -187,21 +187,21 @@ bool QBluetoothLocalDevice::isValid() const
*/
/*!
- \fn void QBluetoothLocalDevice::deviceConnected(const QBluetoothAddress &address)
+ \fn QBluetoothLocalDevice::deviceConnected(const QBluetoothAddress &address)
\since 5.3
A device with \a address is connected with this device.
*/
/*!
- \fn void QBluetoothLocalDevice::deviceDisconnected(const QBluetoothAddress &address)
+ \fn QBluetoothLocalDevice::deviceDisconnected(const QBluetoothAddress &address)
\since 5.3
A device with \a address is disconnected from this device.
*/
/*!
- \fn QList<QBluetoothAddress> connectedDevices() const
+ \fn QList<QBluetoothAddress> QBluetoothLocalDevice::connectedDevices() const
\since 5.3
Returns the list of connected devices.
diff --git a/src/bluetooth/qbluetoothlocaldevice.h b/src/bluetooth/qbluetoothlocaldevice.h
index caf2f050..597496b7 100644
--- a/src/bluetooth/qbluetoothlocaldevice.h
+++ b/src/bluetooth/qbluetoothlocaldevice.h
@@ -105,8 +105,8 @@ public Q_SLOTS:
Q_SIGNALS:
void hostModeStateChanged(QBluetoothLocalDevice::HostMode state);
- void deviceConnected(const QBluetoothAddress &address) const;
- void deviceDisconnected(const QBluetoothAddress &address) const;
+ void deviceConnected(const QBluetoothAddress &address);
+ void deviceDisconnected(const QBluetoothAddress &address);
void pairingFinished(const QBluetoothAddress &address, QBluetoothLocalDevice::Pairing pairing);
void pairingDisplayPinCode(const QBluetoothAddress &address, QString pin);