summaryrefslogtreecommitdiffstats
path: root/src/connectivity/bluetooth/qbluetoothaddress.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/connectivity/bluetooth/qbluetoothaddress.cpp')
-rw-r--r--src/connectivity/bluetooth/qbluetoothaddress.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/connectivity/bluetooth/qbluetoothaddress.cpp b/src/connectivity/bluetooth/qbluetoothaddress.cpp
index 97f4c6d9a0..052c687184 100644
--- a/src/connectivity/bluetooth/qbluetoothaddress.cpp
+++ b/src/connectivity/bluetooth/qbluetoothaddress.cpp
@@ -47,6 +47,7 @@ QTM_BEGIN_NAMESPACE
/*!
\class QBluetoothAddress
\brief The QBluetoothAddress class provides a Bluetooth address.
+ \since 1.2
\ingroup connectivity-bluetooth
\inmodule QtConnectivity
@@ -134,7 +135,7 @@ QBluetoothAddress::QBluetoothAddress(const QBluetoothAddress &other)
/*!
Assigns \a other to this Bluetooth address.
*/
-QBluetoothAddress &QBluetoothAddress::operator=(const QBluetoothAddress &other)
+QBluetoothAddress &QBluetoothAddress::operator=(const QBluetoothAddress &other)
{
d_ptr = other.d_ptr;
return *this;
@@ -176,7 +177,7 @@ bool QBluetoothAddress::operator<(const QBluetoothAddress &other) const
Returns true if the Bluetooth address are equal, otherwise returns false.
*/
bool QBluetoothAddress::operator==(const QBluetoothAddress &other) const
-{
+{
Q_D(const QBluetoothAddress);
return d->m_address == other.d_func()->m_address;
}