preferences/bluetooth: Correct predefinitions.
Thanks to various Clang warnings/errors due to clashing definitions.
This commit is contained in:
parent
00aac5fdeb
commit
1812b1f732
@ -14,7 +14,6 @@
|
||||
|
||||
class BluetoothSettings;
|
||||
class ExtendedLocalDeviceView;
|
||||
class LocalDevice;
|
||||
|
||||
class BBox;
|
||||
class BMenuField;
|
||||
|
@ -11,8 +11,6 @@
|
||||
#include <bluetooth/bluetooth.h>
|
||||
#include <bluetooth/DeviceClass.h>
|
||||
|
||||
class BluetoothDevice;
|
||||
|
||||
namespace Bluetooth {
|
||||
|
||||
class DeviceListItem : public BListItem
|
||||
|
@ -16,18 +16,20 @@ class BButton;
|
||||
class BTextView;
|
||||
class BListView;
|
||||
class BScrollView;
|
||||
namespace Bluetooth {
|
||||
class LocalDevice;
|
||||
class DiscoveryAgent;
|
||||
class DiscoveryListener;
|
||||
}
|
||||
|
||||
class InquiryPanel : public BWindow
|
||||
class InquiryPanel : public BWindow
|
||||
{
|
||||
public:
|
||||
InquiryPanel(BRect frame, LocalDevice* lDevice = NULL);
|
||||
InquiryPanel(BRect frame, LocalDevice* lDevice = NULL);
|
||||
bool QuitRequested(void);
|
||||
void MessageReceived(BMessage *message);
|
||||
|
||||
private:
|
||||
|
||||
private:
|
||||
BStatusBar* fScanProgress;
|
||||
BButton* fAddButton;
|
||||
BButton* fInquiryButton;
|
||||
@ -37,12 +39,12 @@ private:
|
||||
BMessage* fRetrieveMessage;
|
||||
BMessage* fSecondsMessage;
|
||||
BMessenger fMessenger;
|
||||
|
||||
|
||||
bool fScanning;
|
||||
bool fRetrieving;
|
||||
LocalDevice* fLocalDevice;
|
||||
DiscoveryAgent* fDiscoveryAgent;
|
||||
DiscoveryListener* fDiscoveryListener;
|
||||
Bluetooth::LocalDevice* fLocalDevice;
|
||||
Bluetooth::DiscoveryAgent* fDiscoveryAgent;
|
||||
Bluetooth::DiscoveryListener* fDiscoveryListener;
|
||||
|
||||
void UpdateListStatus(void);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user