mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 851046: Patch 3 - Replace (Bluetooth*Managers)->CloseSocket() with (Bluetooth*Managers)->Disconnect(); r=mrbkap
This commit is contained in:
parent
4d042d6bbd
commit
a0b0306990
@ -833,17 +833,17 @@ public:
|
||||
{
|
||||
BluetoothHfpManager* hfp = BluetoothHfpManager::Get();
|
||||
if (hfp) {
|
||||
hfp->CloseSocket();
|
||||
hfp->Disconnect();
|
||||
}
|
||||
|
||||
BluetoothOppManager* opp = BluetoothOppManager::Get();
|
||||
if (opp) {
|
||||
opp->CloseSocket();
|
||||
opp->Disconnect();
|
||||
}
|
||||
|
||||
BluetoothScoManager* sco = BluetoothScoManager::Get();
|
||||
if (sco) {
|
||||
sco->CloseSocket();
|
||||
sco->Disconnect();
|
||||
}
|
||||
|
||||
return NS_OK;
|
||||
|
Loading…
Reference in New Issue
Block a user