Index: sources/view/vtreatmentadjustmentduration.cpp =================================================================== diff -u -r016578b44e879b89bd42dda7763ed50e67d7e64c -ra159e12630645a9a35fb0a5585cc7b639cfe6aa6 --- sources/view/vtreatmentadjustmentduration.cpp (.../vtreatmentadjustmentduration.cpp) (revision 016578b44e879b89bd42dda7763ed50e67d7e64c) +++ sources/view/vtreatmentadjustmentduration.cpp (.../vtreatmentadjustmentduration.cpp) (revision a159e12630645a9a35fb0a5585cc7b639cfe6aa6) @@ -18,6 +18,14 @@ VIEW_DEF_CLASS_ADJUSTMENT(VTreatmentAdjustmentDuration, AdjustDurationResponseData) +void VTreatmentAdjustmentDuration::initConnections() { + + ACTION_RECEIVE_BRIDGE_CONNECTION(Gui::_GuiController, AdjustDurationResponseData); + + connect(this , SIGNAL(didAdjustment(quint32)), + &_GuiController, SLOT( doAdjustment(quint32))); +} + void VTreatmentAdjustmentDuration::onActionReceive(const AdjustDurationResponseData &vData) { adjustment_Accepted ( vData.mAccepted ); @@ -27,5 +35,5 @@ // *** 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. *** - adjustmentDuration ( true ); + adjustment ( true ); }