Index: sources/gui/GuiView.cpp =================================================================== diff -u -r27cc308ff5113a9386899d3c8f8b29962a8498e1 -r79e076cece4ba503be6c3834eb68d1e5cb1b882f --- sources/gui/GuiView.cpp (.../GuiView.cpp) (revision 27cc308ff5113a9386899d3c8f8b29962a8498e1) +++ sources/gui/GuiView.cpp (.../GuiView.cpp) (revision 79e076cece4ba503be6c3834eb68d1e5cb1b882f) @@ -97,7 +97,7 @@ 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); } @@ -115,7 +115,7 @@ 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; @@ -130,7 +130,7 @@ */ 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); @@ -145,7 +145,7 @@ */ 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); @@ -160,7 +160,7 @@ */ 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 ); @@ -177,7 +177,7 @@ */ 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 ); @@ -192,7 +192,7 @@ */ 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); } @@ -205,7 +205,7 @@ */ 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(); } @@ -218,7 +218,7 @@ */ 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(); } @@ -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)