Index: sources/view/td/adjustment/treatment/VTreatmentAdjustmentSaline.cpp =================================================================== diff -u -r99d10909ee4ee821cd4ab6dc323c3798d9090b39 -r90213417dbea130b76ae45a35083d188bd43f45e --- sources/view/td/adjustment/treatment/VTreatmentAdjustmentSaline.cpp (.../VTreatmentAdjustmentSaline.cpp) (revision 99d10909ee4ee821cd4ab6dc323c3798d9090b39) +++ sources/view/td/adjustment/treatment/VTreatmentAdjustmentSaline.cpp (.../VTreatmentAdjustmentSaline.cpp) (revision 90213417dbea130b76ae45a35083d188bd43f45e) @@ -38,7 +38,7 @@ /*! * \brief View::VTreatmentAdjustmentSaline::doAdjustment * \details the invocable slot to adjust(start/stop) the treatment saline bolus state - * \param vStart - if true sets the requestedState to 1(SALINE_CMD_START) otherwise to 0(SALINE_CMD_STOP) + * \param vStart - if true sets the requestedState to 1(FLUID_BOLUS_CMD_START) otherwise to 0(FLUID_BOLUS_CMD_STOP) */ /*! @@ -47,7 +47,7 @@ */ void View::VTreatmentAdjustmentSaline::doStart() { - _data.requestedState = GuiSalineCommands::SALINE_CMD_START; + _data.requestedState = GuiSalineCommands::FLUID_BOLUS_CMD_START; emit didAdjustment(_data); } @@ -57,6 +57,6 @@ */ void View::VTreatmentAdjustmentSaline::doStop() { - _data.requestedState = GuiSalineCommands::SALINE_CMD_STOP; + _data.requestedState = GuiSalineCommands::FLUID_BOLUS_CMD_STOP; emit didAdjustment(_data); }