Index: sources/device/DeviceController.cpp =================================================================== diff -u -r301c0a2101eb9374145ae274c8d91460fc9a6a62 -r79e076cece4ba503be6c3834eb68d1e5cb1b882f --- sources/device/DeviceController.cpp (.../DeviceController.cpp) (revision 301c0a2101eb9374145ae274c8d91460fc9a6a62) +++ sources/device/DeviceController.cpp (.../DeviceController.cpp) (revision 79e076cece4ba503be6c3834eb68d1e5cb1b882f) @@ -85,15 +85,15 @@ */ void DeviceController::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 } // coco end void DeviceController::onRemoveLogs(bool vInProgress) { - // coco begin validated: The log in progress requires user interaction + // disabled coco begin validated: The log in progress requires user interaction // it has been tested and works fine in normal run. _pauseSpaceCheck = vInProgress; } @@ -146,7 +146,7 @@ */ void DeviceController::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 @@ */ bool DeviceController::usbSeek(QString &vDevice) { - // coco begin validated: Needed User Interaction so tested manually + // disabled coco begin validated: Needed User Interaction so tested manually // This function cannot be tested on any device other than target // because only on device the usb is /dev/sdX# and others are mmblk___ // but on VM and normal Linuxes all drives are /dev/sdX# and cannot be identified as USB. @@ -199,7 +199,7 @@ */ bool DeviceController::driveSpaceCheck(const QString &vPath, qint64 &vTotalBytes, qint64 &vAvailableBytes, bool *vIsReadOnly) { - // coco begin validated: Needed User Interaction to make the device not ready so tested manually + // disabled coco begin validated: Needed User Interaction to make the device not ready so tested manually bool isReadOnly; if (! FileHandler::isMounted(vPath, &isReadOnly)) return false; if (vIsReadOnly) *vIsReadOnly = isReadOnly; @@ -233,7 +233,7 @@ */ void DeviceController::usbCheck() { - // coco begin validated: Needed User Interaction so tested manually + // disabled coco begin validated: Needed User Interaction so tested manually QString device = ""; if (usbSeek(device)) { if (! _umounted ) { @@ -255,7 +255,7 @@ */ void DeviceController::sdcardSpaceCheck() { - // coco begin validated: Needed User Interaction so tested manually + // disabled coco begin validated: Needed User Interaction so tested manually // Old Info ; // Current info static bool mOIsReady ; bool mCIsReady ; @@ -310,7 +310,7 @@ */ void DeviceController::usbError(const QString &vDevice) { - // coco begin validated: This needs user interaction to plug-in/out the USB device + // disabled coco begin validated: This needs user interaction to plug-in/out the USB device // has been tested manually QString error; static QString lastError; @@ -339,7 +339,7 @@ */ void DeviceController::onUSBDriveUmount() { - // coco begin validated: This needs user interaction to plug-in/out the USB device + // disabled coco begin validated: This needs user interaction to plug-in/out the USB device // has been tested manually _umounted = true; } @@ -354,7 +354,7 @@ */ bool DeviceController::usbMount(const QString &vDevice) { - // coco begin validated: This needs user interaction to plug-in the USB device + // disabled coco begin validated: This needs user interaction to plug-in the USB device // has been tested manually bool ok; _usbDrive = vDevice.toLatin1().constData(); @@ -380,7 +380,7 @@ */ bool DeviceController::usbUmount(const QString &vDevice) { - // 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 bool ok; ok = ::umount(vDevice.toLatin1().constData()) == 0; @@ -404,7 +404,7 @@ */ void DeviceController::usbRemove() { - // 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 usbUmount(USB_Mount_Point); _umounted = false;