Index: sources/gui/GuiView.cpp =================================================================== diff -u -r27cc308ff5113a9386899d3c8f8b29962a8498e1 -r4a67c01045f365be38f1a12a8572c0070d343e1e --- sources/gui/GuiView.cpp (.../GuiView.cpp) (revision 27cc308ff5113a9386899d3c8f8b29962a8498e1) +++ sources/gui/GuiView.cpp (.../GuiView.cpp) (revision 4a67c01045f365be38f1a12a8572c0070d343e1e) @@ -97,11 +97,11 @@ void GuiView::doActionTransmit(GuiActionType vAction, const QVariantList &vData) { // TODO : Remove this code later when Investigated thoroughly. - // coco begin validated: This code later needs to be removed when Investigated thoroughly. + // disabled coco begin validated: This code later needs to be removed when Investigated thoroughly. // has been tested manually emit didActionTransmit(vAction, vData); } -// coco end +// disabled coco end /*! * \brief GuiView::doActionTransmit @@ -115,13 +115,13 @@ void GuiView::doActionTransmit(GuiActionType vAction, const QVariant &vData) { // TODO : Remove this code later when Investigated thoroughly. - // coco begin validated: This code later needs to be removed when Investigated thoroughly. + // disabled coco begin validated: This code later needs to be removed when Investigated thoroughly. // has been tested manually QVariantList mData; mData += vData; emit didActionTransmit(vAction, mData); } -// coco end +// disabled coco end /*! * \brief GuiView::doUSBDriveMount @@ -130,13 +130,13 @@ */ void GuiView::onUSBDriveMount () { - // coco begin validated: This needs user interaction to plug-in USB device + // disabled coco begin validated: This needs user interaction to plug-in USB device // has been tested manually usbReady (true ); usbRemoved (false); emit didUSBDriveMount (); } -// coco end +// disabled coco end /*! * \brief GuiView::doUSBDriveUmount @@ -145,13 +145,13 @@ */ void GuiView::doUSBDriveUmount() { - // coco begin validated: This needs user interaction to plug-in USB device + // disabled coco begin validated: This needs user interaction to plug-in USB device // has been tested manually usbReady (false); usbRemoved (false); emit didUSBDriveUmount(); } -// coco end +// disabled coco end /*! * \brief GuiView::doUSBDriveRemove @@ -160,13 +160,13 @@ */ void GuiView::onUSBDriveRemove() { - // coco begin validated: This needs user interaction to plug-in USB device + // disabled coco begin validated: This needs user interaction to plug-in USB device // has been tested manually usbReady (false); usbRemoved (true ); emit didUSBDriveRemove(); } -// coco end +// disabled coco end /*! * \brief GuiView::onSDCardStateChange @@ -177,13 +177,13 @@ */ void GuiView::onSDCardStateChange(bool vIsReady, bool vIsReadOnly) { - // coco begin validated: This needs user interaction to plug-in USB device + // disabled coco begin validated: This needs user interaction to plug-in USB device // has been tested manually /// DEBUG: qDebug() << " ***** GuiView " << Storage::SDCard_Base_Path_Name << vIsReady; sdIsReady (vIsReady ); sdIsReadOnly(vIsReadOnly); } -// coco end +// disabled coco end /*! * \brief GuiController::doSDCardSpaceTooLow @@ -192,11 +192,11 @@ */ void GuiView::onSDCardSpaceTooLow(quint8 vAvailablePercent) { - // coco begin validated: This needs to fill up the SD-Card and test with human interactions. + // disabled coco begin validated: This needs to fill up the SD-Card and test with human interactions. // has been tested manually sdTooLowPecent(vAvailablePercent); } -// coco end +// disabled coco end /*! * \brief GuiView::onExport @@ -205,11 +205,11 @@ */ void GuiView::onExport() { - // coco begin validated: This needs user interaction to plug-in USB device + // disabled coco begin validated: This needs user interaction to plug-in USB device // has been tested manually emit didExport(); } -// coco end +// disabled coco end /*! * \brief GuiView::doExportLog @@ -218,11 +218,11 @@ */ void GuiView::doExportLog() { - // coco begin validated: This needs user interaction to plug-in USB device + // disabled coco begin validated: This needs user interaction to plug-in USB device // has been tested manually emit didExportLog(); } -// coco end +// disabled coco end /*! * \brief GuiView::onSDCardSpaceChange @@ -237,7 +237,7 @@ */ void GuiView::onSDCardSpaceChange(bool vReady, qint64 vTotal, qint64 vAvailable, quint8 vPercent) { - // coco begin validated: This needs user interaction to change the SD card files system. + // disabled coco begin validated: This needs user interaction to change the SD card files system. // has been tested manually /// DEBUG: qDebug() << vReady << vTotal << vAvailable << vPercent << Storage::Available_Space_Percent; Q_UNUSED(vReady) @@ -246,4 +246,4 @@ sdPercent ( vPercent ); sdIsLow ( vPercent <= Storage::Available_Space_Percent ); } -// coco end +// disabled coco end