Index: sources/ApplicationController.cpp =================================================================== diff -u -re49c956894f999f6539b0c404dd1c9b18a76bb4b -rba15fce14caf76166c286da95974c69f8a24d4b8 --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision e49c956894f999f6539b0c404dd1c9b18a76bb4b) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision ba15fce14caf76166c286da95974c69f8a24d4b8) @@ -105,8 +105,6 @@ this , SLOT(onMainTimerTimeout())); // From GUI - connect(&_GuiController , SIGNAL(didActionTransmit(GuiActionType, const QVariantList &)), - this , SLOT( onActionTransmit(GuiActionType, const QVariantList &))); connect(&_GuiController , SIGNAL(didQuitApplication()), this , SLOT( onQuitApplication())); connect(&_GuiController , SIGNAL(didTreatmentRangesDone(bool)), @@ -208,17 +206,6 @@ } /*! - * \brief Process the requested action - * \details Processes the requested action - * \param vAction - User requested Action - * \param vData - Action data to be transmitted. - */ -void ApplicationController::onActionTransmit(GuiActionType vAction, const QVariantList &vData) -{ - emit didActionTransmit(vAction, vData); -} - -/*! * \brief An action has been confirmed * \details GUI requested an action. * In response HD confirmed the action. @@ -366,7 +353,8 @@ else { mData += static_cast(GuiActionData::NoData); } - onActionTransmit(GuiActionType::ID_TDCheckIn, mData); +// TODO ask behrouz what this method does ************************ +// onActionTransmit(GuiActionType::ID_TDCheckIn, mData); #endif }