From cf1e6d288125b052a3efe2de86ac74e42323b83d Mon Sep 17 00:00:00 2001 From: fenoglio Date: Thu, 8 Oct 2020 22:13:04 +0200 Subject: [PATCH] fixes for mac --- qbluetoothleuartdevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbluetoothleuartdevice.cpp b/qbluetoothleuartdevice.cpp index ca58f7a..d3f531d 100644 --- a/qbluetoothleuartdevice.cpp +++ b/qbluetoothleuartdevice.cpp @@ -19,7 +19,7 @@ QString QBluetoothLeUartDevice::getAddress() { #ifdef Q_OS_MAC // workaround for Core Bluetooth: - return m_device->deviceUuid().toString(); + return bluetoothDeviceInfo.deviceUuid().toString(); #else return bluetoothDeviceInfo.address().toString(); #endif