Correct misspell adquire->acquire

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24384 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Ruiz Dorantes
2008-03-13 19:30:04 +00:00
parent 30f55bc990
commit 057d0dc02a
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -70,7 +70,7 @@ LocalDevice::GetLocalDevice()
if (SRetrieveBluetoothMessenger() != B_OK)
return NULL;
BMessage request(BT_MSG_ADQUIRE_LOCAL_DEVICE);
BMessage request(BT_MSG_ACQUIRE_LOCAL_DEVICE);
return RequestLocalDeviceID(&request);
}
@@ -82,7 +82,7 @@ LocalDevice::GetLocalDevice(hci_id hid)
if (SRetrieveBluetoothMessenger() != B_OK)
return NULL;
BMessage request(BT_MSG_ADQUIRE_LOCAL_DEVICE);
BMessage request(BT_MSG_ACQUIRE_LOCAL_DEVICE);
request.AddInt32("hci_id", hid);
return RequestLocalDeviceID(&request);
@@ -96,7 +96,7 @@ LocalDevice::GetLocalDevice(bdaddr_t bdaddr)
if (SRetrieveBluetoothMessenger() != B_OK)
return NULL;
BMessage request(BT_MSG_ADQUIRE_LOCAL_DEVICE);
BMessage request(BT_MSG_ACQUIRE_LOCAL_DEVICE);
request.AddData("bdaddr", B_ANY_TYPE, &bdaddr, sizeof(bdaddr_t));