Index: sources/gui/guicontroller.cpp =================================================================== diff -u -r296e0e140bfeb193a9f571873afa6934143b1075 -r4a6abe765f03feae8100ec660aa04aa218d4dfa3 --- sources/gui/guicontroller.cpp (.../guicontroller.cpp) (revision 296e0e140bfeb193a9f571873afa6934143b1075) +++ sources/gui/guicontroller.cpp (.../guicontroller.cpp) (revision 4a6abe765f03feae8100ec660aa04aa218d4dfa3) @@ -71,10 +71,6 @@ connect(&_ApplicationController, SIGNAL(didActionReceive (GuiActionType, const QVariantList &)), this , SLOT( onActionReceive (GuiActionType, const QVariantList &))); - connect(&_ApplicationController, SIGNAL(didActionReceive (const BloodFlowData &)), - this , SLOT( onActionReceive (const BloodFlowData &))); - connect(&_ApplicationController, SIGNAL(didActionReceive (const DialysateFlowData &)), - this , SLOT( onActionReceive (const DialysateFlowData &))); // From OS : USB Drive has been removed physically. connect(&_ApplicationController, SIGNAL(didUSBDriveMount ()), @@ -85,6 +81,7 @@ connect(&_ApplicationController, SIGNAL(didExport()), this , SLOT( onExport())); + ACTION_RECEIVE_MODEL_BRIDGE_CONNECTIONS(_ApplicationController) } /*! @@ -210,9 +207,6 @@ emit didActionReceive (vAction, vData); } -void GuiController::onActionReceive(const BloodFlowData &vData){ emit didActionReceive(vData); } -void GuiController::onActionReceive(const DialysateFlowData &vData){ emit didActionReceive(vData); } - /*! * \brief GuiController::onUSBDriveMount * \details emits didUSBDriveMount signal to notify other classes (GuiView)