Index: sources/ApplicationController.cpp =================================================================== diff -u -re2b8925fd32e359b3c440acd61e921f0be825a65 -rfa0bd4432f4726fc0d29de0f93a8d5e725cf0274 --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision e2b8925fd32e359b3c440acd61e921f0be825a65) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision fa0bd4432f4726fc0d29de0f93a8d5e725cf0274) @@ -26,7 +26,6 @@ #include "GuiController.h" #include "Settings.h" #include "MSettings.h" -#include "BluetoothInterface.h" /*! * \brief ApplicationController::ApplicationController @@ -90,10 +89,6 @@ this , SLOT(onPOSTEthernet (bool))); connect(&_post , SIGNAL( didWiFi (bool)), this , SLOT(onPOSTWiFi (bool))); - connect(&_post , SIGNAL( didBluetooth(bool)), - this , SLOT(onPOSTBluetooth(bool))); - connect(&_post , SIGNAL( didCloudSync(bool)), - this , SLOT(onPOSTCloudSync(bool))); connect(&_post , SIGNAL( didFail (Gui::GuiAlarmID )), this , SLOT(onPOSTFail (Gui::GuiAlarmID ))); @@ -570,33 +565,6 @@ } /*! - * \brief ApplicationController::onPOSTBluetooth - * \details Starts the Bluetooth Interface - */ -void ApplicationController::onPOSTBluetooth(bool vPass) { - if (vPass) { - _BluetoothInterface.valid(true); - _BluetoothInterface.doStart(); - } - else { - _BluetoothInterface.doNotifyStatePOSTError(); - } - // sending the data first, therefore in the slot for the didPOST we have the vPass and the Data to decide to use the data or not. - emit didPOSTBluetoothData (_post.macBluetooth()); - emit didPOSTBluetooth (vPass); -} - -/*! - * \brief ApplicationController::onPOSTCloudSync - * \details Notifies the CloudSync POST status - */ -void ApplicationController::onPOSTCloudSync(bool vPass) { - // sending the data first, therefore in the slot for the didPOST we have the vPass and the Data to decide to use the data or not. - emit didPOSTCloudSyncData("" /*_post.netCloudSync*/); // not needed and POST is not getting it yet. [ApplicationController => DeviceController] - emit didPOSTCloudSync (vPass); -} - -/*! * \brief ApplicationController::alarmTrigger * \details Queues the alarms, or send the list, or send one alarm * \param vAlarmID - The alarm ID to be triggered or queued.