Index: sources/view/vtreatmentadjustmentflows.cpp =================================================================== diff -u -r016578b44e879b89bd42dda7763ed50e67d7e64c -ra159e12630645a9a35fb0a5585cc7b639cfe6aa6 --- sources/view/vtreatmentadjustmentflows.cpp (.../vtreatmentadjustmentflows.cpp) (revision 016578b44e879b89bd42dda7763ed50e67d7e64c) +++ sources/view/vtreatmentadjustmentflows.cpp (.../vtreatmentadjustmentflows.cpp) (revision a159e12630645a9a35fb0a5585cc7b639cfe6aa6) @@ -17,6 +17,13 @@ #include "guicontroller.h" VIEW_DEF_CLASS_ADJUSTMENT(VTreatmentAdjustmentFlows, AdjustBloodDialysateResponseData) +void VTreatmentAdjustmentFlows::initConnections() { + ACTION_RECEIVE_BRIDGE_CONNECTION(Gui::_GuiController, AdjustBloodDialysateResponseData); + //ACTION_TRANSMT_BRIDGE_CONNECTION + // ----- Adjust Blood/Dialysate Flows + connect(this , SIGNAL(didAdjustment(quint32, quint32)), + &_GuiController, SLOT( doAdjustment(quint32, quint32))); +} void VTreatmentAdjustmentFlows::onActionReceive(const AdjustBloodDialysateResponseData &vData) { @@ -27,6 +34,6 @@ // *** has to be the last to let the information to be set and then emit the signal *** // *** otherwise will use the previous values before being set. *** - adjustmentFlow ( true ); + adjustment ( true ); }