diff options
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index 491c16825..47786c0be 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -204,11 +204,15 @@ void QMLManager::mergeLocalRepo() } #if BT_SUPPORT + +extern void addBtUuid(QBluetoothUuid uuid); + void QMLManager::btDeviceDiscovered(const QBluetoothDeviceInfo &device) { QString newDevice = device.name(); QList<QBluetoothUuid> serviceUuids = device.serviceUuids(); foreach (QBluetoothUuid id, serviceUuids) { + addBtUuid(id); qDebug() << id.toByteArray(); } appendTextToLog("Found new device " + newDevice + " (" + device.address().toString() + ")"); |