Index: sources/gui/GuiController.h =================================================================== diff -u -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 -r64484a210332da6b2dcf3f0a23cb6c59f4caaf98 --- sources/gui/GuiController.h (.../GuiController.h) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) +++ sources/gui/GuiController.h (.../GuiController.h) (revision 64484a210332da6b2dcf3f0a23cb6c59f4caaf98) @@ -40,8 +40,6 @@ * This class contains the state of the GUI and it is the first interface between the GUI and the business logic by interfacing with ApplicationController. * Any Action that happens by the user on the screens needs to be passed to this class, which collaborates with the ApplicationController to validate the action * and decide on what needs to be done regarding re data transmitting/receiving and the current state of the UI Software application. - * Messages to be transmitted from UI Application perspective to the entities on the CANBus will be passed by onActionTransmit - * and will be decided to be passed down to by emitting the didActionTransmit() signal or needs to be handled by handleTransmit() * \note States are like [wait for user , user attention required , Time outs , ... ] */ class GuiController : public QObject @@ -65,8 +63,6 @@ void initThread(QThread &vThread); void quitThread(); - bool handleTransmit(GuiActionType vAction, const QVariantList &vData); - public slots: void doActionTransmit(GuiActionType vAction, const QVariantList &vData); // UI => TD/DD @@ -127,6 +123,5 @@ ACTION_RECEIVE_MODEL_BRIDGE_DEFINITIONS ACTION_RECEIVE_PRIVATE_SLOT(UIPostFinalResultHDRequestData) - }; }