From e91079d501ccc0112926647c440c810bf300a33f Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Sun, 10 Apr 2016 09:27:44 -0500 Subject: [PATCH] bluetooth/server: Don't show blackboard on start --- src/servers/bluetooth/BluetoothServer.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/servers/bluetooth/BluetoothServer.cpp b/src/servers/bluetooth/BluetoothServer.cpp index d5ea8619345..534574f0fa3 100644 --- a/src/servers/bluetooth/BluetoothServer.cpp +++ b/src/servers/bluetooth/BluetoothServer.cpp @@ -56,9 +56,10 @@ DispatchEvent(struct hci_event_header* header, int32 code, size_t size) BluetoothServer::BluetoothServer() - : BApplication(BLUETOOTH_SIGNATURE) - , fSDPThreadID(-1) - , fIsShuttingDown(false) + : + BApplication(BLUETOOTH_SIGNATURE), + fSDPThreadID(-1), + fIsShuttingDown(false) { Output::Instance()->Run(); Output::Instance()->SetTitle("Bluetooth message gathering"); @@ -115,8 +116,6 @@ void BluetoothServer::ArgvReceived(int32 argc, char **argv) void BluetoothServer::ReadyToRun(void) { - ShowWindow(Output::Instance()); - fDeviceManager->StartMonitoringDevice("bluetooth/h2"); fDeviceManager->StartMonitoringDevice("bluetooth/h3"); fDeviceManager->StartMonitoringDevice("bluetooth/h4");