mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-25 04:32:10 +00:00
Format BluetoothDevices.cpp
This commit is contained in:
parent
180e472551
commit
2a66f1d64c
1 changed files with 25 additions and 23 deletions
|
@ -48,7 +48,8 @@ namespace BluetoothDevices
|
||||||
button.RemoveClass("inactive");
|
button.RemoveClass("inactive");
|
||||||
state |= DeviceState::RequestConnect;
|
state |= DeviceState::RequestConnect;
|
||||||
|
|
||||||
System::ConnectBTDevice(device.device, [&dev = device, &but = button](bool success, System::BluetoothDevice&)
|
System::ConnectBTDevice(device.device,
|
||||||
|
[&dev = device, &but = button](bool success, System::BluetoothDevice&)
|
||||||
{
|
{
|
||||||
deviceMutex.lock();
|
deviceMutex.lock();
|
||||||
if (!success)
|
if (!success)
|
||||||
|
@ -66,7 +67,8 @@ namespace BluetoothDevices
|
||||||
button.RemoveClass("active");
|
button.RemoveClass("active");
|
||||||
state |= DeviceState::RequestDisconnect;
|
state |= DeviceState::RequestDisconnect;
|
||||||
|
|
||||||
System::DisconnectBTDevice(device.device, [&dev = device, &but = button](bool success, System::BluetoothDevice&)
|
System::DisconnectBTDevice(device.device,
|
||||||
|
[&dev = device, &but = button](bool success, System::BluetoothDevice&)
|
||||||
{
|
{
|
||||||
deviceMutex.lock();
|
deviceMutex.lock();
|
||||||
if (!success)
|
if (!success)
|
||||||
|
|
Loading…
Reference in a new issue