summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/bluetooth/qbluetoothdeviceinfo.cpp8
-rw-r--r--src/bluetooth/qbluetoothservicediscoveryagent_osx.mm8
2 files changed, 9 insertions, 7 deletions
diff --git a/src/bluetooth/qbluetoothdeviceinfo.cpp b/src/bluetooth/qbluetoothdeviceinfo.cpp
index b8a68113..a831ee3e 100644
--- a/src/bluetooth/qbluetoothdeviceinfo.cpp
+++ b/src/bluetooth/qbluetoothdeviceinfo.cpp
@@ -595,8 +595,10 @@ void QBluetoothDeviceInfo::setCached(bool cached)
}
/*!
- Unique identifier for Bluetooth devices, that do not have addresses. This can happen on OS X and iOS,
- where CoreBluetooth API hides addresses, but provides UUIDs to identify devices/peripherals.
+ Sets the unique identifier \a uuid for Bluetooth devices, that do not have addresses.
+ This happens on OS X and iOS, where the CoreBluetooth API hides addresses, but provides
+ UUIDs to identify devices/peripherals.
+
This uuid is invalid on any other platform.
\sa deviceUuid()
@@ -610,7 +612,7 @@ void QBluetoothDeviceInfo::setDeviceUuid(const QBluetoothUuid &uuid)
}
/*!
- Unique identifier for a Bluetooth device without an address.
+ Returns a unique identifier for a Bluetooth device without an address.
\sa setDeviceUuid()
\since 5.5
diff --git a/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm b/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm
index 21744f0c..117f3880 100644
--- a/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm
+++ b/src/bluetooth/qbluetoothservicediscoveryagent_osx.mm
@@ -450,7 +450,7 @@ QList<QBluetoothServiceInfo> QBluetoothServiceDiscoveryAgent::discoveredServices
return d_ptr->discoveredServices;
}
-/*!
+/*
Sets the UUID filter to \a uuids. Only services matching the UUIDs in \a uuids will be
returned.
@@ -463,7 +463,7 @@ void QBluetoothServiceDiscoveryAgent::setUuidFilter(const QList<QBluetoothUuid>
d_ptr->uuidFilter = uuids;
}
-/*!
+/*
This is an overloaded member function, provided for convenience.
Sets the UUID filter to a list containing the single element \a uuid.
@@ -476,7 +476,7 @@ void QBluetoothServiceDiscoveryAgent::setUuidFilter(const QBluetoothUuid &uuid)
d_ptr->uuidFilter.append(uuid);
}
-/*!
+/*
Returns the UUID filter.
\sa setUuidFilter()
@@ -486,7 +486,7 @@ QList<QBluetoothUuid> QBluetoothServiceDiscoveryAgent::uuidFilter() const
return d_ptr->uuidFilter;
}
-/*!
+/*
Sets the remote device address to \a address. If \a address is default constructed,
services will be discovered on all contactable Bluetooth devices. A new remote
address can only be set while there is no service discovery in progress; otherwise