Index: sources/gui/GuiController.cpp =================================================================== diff -u -r27cc308ff5113a9386899d3c8f8b29962a8498e1 -r79e076cece4ba503be6c3834eb68d1e5cb1b882f --- sources/gui/GuiController.cpp (.../GuiController.cpp) (revision 27cc308ff5113a9386899d3c8f8b29962a8498e1) +++ sources/gui/GuiController.cpp (.../GuiController.cpp) (revision 79e076cece4ba503be6c3834eb68d1e5cb1b882f) @@ -56,7 +56,7 @@ */ void GuiController::quit() { - // coco begin validated: Application termination is not correctly done in coco!!! + // disabled coco begin validated: Application termination is not correctly done in coco!!! // it has been tested and works perfectly fine in normal run. quitThread(); // validated } @@ -111,7 +111,7 @@ */ void GuiController::initThread(QThread &vThread) { - // coco begin validated: Application termination is not correctly done in coco!!! + // disabled coco begin validated: Application termination is not correctly done in coco!!! // it has been tested and works perfectly fine in normal run. // runs in main thread Q_ASSERT_X(QThread::currentThread() == qApp->thread() , __func__, "The Class initialization must be done in Main Thread" ); @@ -130,7 +130,7 @@ */ void GuiController::quitThread() { - // coco begin validated: Application termination is not correctly done in coco!!! + // disabled coco begin validated: Application termination is not correctly done in coco!!! // it has been tested and works perfectly fine in normal run. if ( ! _thread ) return; @@ -166,7 +166,7 @@ */ void GuiController::doActionTransmit(GuiActionType vAction, const QVariantList &vData) { - // coco begin validated: This is a sample code and currently does nothing + // disabled coco begin validated: This is a sample code and currently does nothing // The handleTransmit is a place holder and currently has not been used. if (! handleTransmit(vAction, vData)) { // coco end @@ -185,7 +185,7 @@ */ bool GuiController::handleTransmit(GuiActionType vAction, const QVariantList &vData) { - // coco begin validated: This is a sample code and currently does nothing + // disabled coco begin validated: This is a sample code and currently does nothing Q_UNUSED(vAction) Q_UNUSED(vData) @@ -237,7 +237,7 @@ */ void GuiController::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 emit didUSBDriveMount(); } @@ -250,7 +250,7 @@ */ void GuiController::doUSBDriveUmount() { - // coco begin validated: This needs user interaction to plug-out the USB device + // disabled coco begin validated: This needs user interaction to plug-out the USB device // has been tested manually emit didUSBDriveUmount(); } @@ -263,7 +263,7 @@ */ void GuiController::onUSBDriveRemove() { - // coco begin validated: This needs user interaction to plug-out the USB device + // disabled coco begin validated: This needs user interaction to plug-out the USB device // has been tested manually emit didUSBDriveRemove(); } @@ -278,7 +278,7 @@ */ void GuiController::onSDCardStateChange(bool vIsReady, bool vIsReadOnly) { - // coco begin validated: This needs user interaction to plug-out the SD Card + // disabled coco begin validated: This needs user interaction to plug-out the SD Card // has been tested manually /// DEBUG: qDebug() << " ***** GuiController " << Storage::SDCard_Base_Path_Name << vIsReady; emit didSDCardStateChange(vIsReady, vIsReadOnly); @@ -293,7 +293,7 @@ */ void GuiController::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 emit didSDCardSpaceTooLow(vAvailablePercent); } @@ -306,7 +306,7 @@ */ void GuiController::onExport() { - // coco begin validated: This needs user interaction to export to USB device + // disabled coco begin validated: This needs user interaction to export to USB device // has been tested manually emit didExport(); } @@ -319,7 +319,7 @@ */ void GuiController::doExportLog() { - // coco begin validated: This needs user interaction to export to USB device + // disabled coco begin validated: This needs user interaction to export to USB device // has been tested manually emit didExportLog(); }