Commit 1d54177f authored by Qt Forward Merge Bot's avatar Qt Forward Merge Bot Committed by Edward Welbourne
Browse files

Merge remote-tracking branch 'origin/5.13' into dev

 Conflicts:
	src/bluetooth/qlowenergycontroller_darwin.mm
	src/bluetooth/qbluetoothdevicediscoveryagent_ios.mm

The latter was auto-resolved by keeping, but is in fact removed on dev, so reremoved.

Change-Id: Ifa47f61836450d59ea8e47a92b84f57ab06863f7
Showing with 4 additions and 2 deletions
include($QT_INSTALL_DOCS/global/qt-module-defaults.qdocconf)
include($QT_INSTALL_DOCS/config/exampleurl-qtconnectivity.qdocconf)
project = QtBluetooth
description = Qt Bluetooth Reference Documentation
......
......@@ -340,7 +340,7 @@ bool qt_validate_value_range(const QLowEnergyCharacteristicData &data)
- (void)startAdvertising
{
state = PeripheralState::waitingForPowerOn;
if (manager)
if (manager.data())
[manager setDelegate:nil];
manager.reset([[CBPeripheralManager alloc] initWithDelegate:self
queue:OSXBluetooth::qt_LE_queue()]);
......@@ -405,7 +405,7 @@ bool qt_validate_value_range(const QLowEnergyCharacteristicData &data)
- (void) addServicesToPeripheral
{
Q_ASSERT(manager);
Q_ASSERT(manager.data());
if (nextServiceToAdd < services.size())
[manager addService:services[nextServiceToAdd++]];
......
include($QT_INSTALL_DOCS/global/qt-module-defaults.qdocconf)
include($QT_INSTALL_DOCS/config/exampleurl-qtconnectivity.qdocconf)
project = QtNfc
description = Qt NFC Reference Documentation
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment