Index: sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.cpp =================================================================== diff -u -rf77d1595d633632cdedc5095a0cac07a7cca1251 -r8f8fc462e36e2ea9fbd236b86aaab5f048c17509 --- sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.cpp (.../VPostTreatmentAdjustPatientDisconnectionConfirm.cpp) (revision f77d1595d633632cdedc5095a0cac07a7cca1251) +++ sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.cpp (.../VPostTreatmentAdjustPatientDisconnectionConfirm.cpp) (revision 8f8fc462e36e2ea9fbd236b86aaab5f048c17509) @@ -23,14 +23,24 @@ \details All the class signal/slot connections are defined here. */ void View::VPostTreatmentAdjustmentPatientDisconnectionConfirm::initConnections() { - ADJUST_VIEW_CONNECTION(AdjustPatientDisconnectionNotifyRequestData); + ADJUST_VIEW_CONNECTION( AdjustPatientDisconnectionNotifyRequestData); + ADJUST_VIEW_CONNECTION(AdjustPatientDisconnectionConfirmRequestData); } /*! + * \brief View::VPostTreatmentAdjustmentPatientDisconnectionConfirm::doNotify + * \details the invocable slot to send user's Patient Disconnection notify + */ +void View::VPostTreatmentAdjustmentPatientDisconnectionConfirm::doNotify() { + AdjustPatientDisconnectionNotifyRequestData data; + emit didAdjustment(data); +} + +/*! * \brief View::VPostTreatmentAdjustmentPatientDisconnectionConfirm::doConfirm * \details the invocable slot to send user's Patient Disconnection confirm */ void View::VPostTreatmentAdjustmentPatientDisconnectionConfirm::doConfirm() { - AdjustPatientDisconnectionNotifyRequestData data; + AdjustPatientDisconnectionConfirmRequestData data; emit didAdjustment(data); }