Index: sources/gui/guiview.cpp =================================================================== diff -u -reea63d68fc0fb269f8dec64d99f488bcad117220 -rb798668f16ad0967ab97e96f5f9a2cdd821e899f --- sources/gui/guiview.cpp (.../guiview.cpp) (revision eea63d68fc0fb269f8dec64d99f488bcad117220) +++ sources/gui/guiview.cpp (.../guiview.cpp) (revision b798668f16ad0967ab97e96f5f9a2cdd821e899f) @@ -66,6 +66,10 @@ // ----- Adjust Blood/Dialysate Flows connect(this , SIGNAL(didAdjustBloodDialysateFlows(quint32, quint32)), &_GuiController, SLOT( doAdjustBloodDialysateFlows(quint32, quint32))); + // ----- Adjust Treatment Duration + connect(this , SIGNAL(didAdjustDuration(quint32)), + &_GuiController, SLOT( doAdjustDuration(quint32))); + } /*! @@ -78,7 +82,6 @@ void GuiView::onActionReceive (GuiActionType vAction, const QVariantList &vData) { // process the evaluation and notify GUI - // process ... emit didActionReceive (vAction, vData); } @@ -92,7 +95,7 @@ void GuiView::doActionTransmit(GuiActionType vAction, const QVariantList &vData) { // TODO : Remove this code later when Investigated throughly. - // coco begin validated: This code later needs to be removed when Investigated throughly. + // coco begin validated: This code later needs to be removed when Investigated thoroughly. // has been tested manually emit didActionTransmit(vAction, vData); }