Index: sources/gui/GuiView.cpp =================================================================== diff -u -rccba568494c6b7214116f818a0ac89d0fa3ba81b -r11560b63360025c294edabc6f5f6da97ad1f20c3 --- sources/gui/GuiView.cpp (.../GuiView.cpp) (revision ccba568494c6b7214116f818a0ac89d0fa3ba81b) +++ sources/gui/GuiView.cpp (.../GuiView.cpp) (revision 11560b63360025c294edabc6f5f6da97ad1f20c3) @@ -110,11 +110,9 @@ void GuiView::doActionTransmit(GuiActionType vAction, const QVariantList &vData) { // TODO : Remove this code later when Investigated thoroughly. - // disabled coco begin validated: This code later needs to be removed when Investigated thoroughly. - // has been tested manually + // This code later needs to be removed when Investigated thoroughly. emit didActionTransmit(vAction, vData); } -// disabled coco end /*! * \brief GuiView::doActionTransmit @@ -128,13 +126,11 @@ void GuiView::doActionTransmit(GuiActionType vAction, const QVariant &vData) { // TODO : Remove this code later when Investigated thoroughly. - // disabled coco begin validated: This code later needs to be removed when Investigated thoroughly. - // has been tested manually + // This code later needs to be removed when Investigated thoroughly. QVariantList mData; mData += vData; emit didActionTransmit(vAction, mData); } -// disabled coco end /*! * \brief GuiView::doUSBDriveMount @@ -143,13 +139,10 @@ */ void GuiView::onUSBDriveMount () { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually usbIsReady (true ); usbIsRemoved(false); emit didUSBDriveMount (); } -// disabled coco end /*! * \brief GuiView::doUSBDriveUmount @@ -158,14 +151,11 @@ */ void GuiView::doUSBDriveUmount() { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually usbIsReady (false); usbIsRemoved(false); exportRunning(false); emit didUSBDriveUmount(); } -// disabled coco end /*! * \brief GuiView::doUSBDriveRemove @@ -174,14 +164,11 @@ */ void GuiView::onUSBDriveRemove() { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually usbIsReady (false); usbIsRemoved(true ); exportRunning(false); emit didUSBDriveRemove(); } -// disabled coco end /*! * \brief GuiView::onSDCardStateChange @@ -192,16 +179,13 @@ */ void GuiView::onSDCardStateChange(bool vIsReady, bool vIsReadOnly) { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually //DEBUG:0: qDebug() << " ***** GuiView " << Storage::SDCard_Base_Path_Name << vIsReady; sdIsReady (vIsReady ); sdIsReadOnly(vIsReadOnly); if (! vIsReady || vIsReadOnly) exportRunning(false); //DEBUG:0: qDebug() << __FUNCTION__ << _sdIsReady << _sdIsReadOnly; } -// disabled coco end /*! * \brief GuiController::doSDCardSpaceTooLow @@ -210,11 +194,8 @@ */ void GuiView::onSDCardSpaceTooLow(quint8 vAvailablePercent) { - // disabled coco begin validated: This needs to fill up the SD-Card and test with human interactions. - // has been tested manually sdTooLowPecent(vAvailablePercent); } -// disabled coco end /*! * \brief GuiView::onExport