Index: sources/gui/GuiController.cpp =================================================================== diff -u -r2bef7b8a25a76a4597aa833955c57fd1c4884de7 -r11560b63360025c294edabc6f5f6da97ad1f20c3 --- sources/gui/GuiController.cpp (.../GuiController.cpp) (revision 2bef7b8a25a76a4597aa833955c57fd1c4884de7) +++ sources/gui/GuiController.cpp (.../GuiController.cpp) (revision 11560b63360025c294edabc6f5f6da97ad1f20c3) @@ -56,11 +56,8 @@ */ void GuiController::quit() { - // 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 } -// disabled coco end /*! * \brief GuiController::initConnections @@ -121,8 +118,6 @@ */ void GuiController::initThread(QThread &vThread) { - // 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" ); _thread = &vThread; @@ -131,7 +126,6 @@ _thread->start(); moveToThread(_thread); } -// disabled coco end /*! * \brief GuiController::quitThread @@ -140,14 +134,11 @@ */ void GuiController::quitThread() { - // 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; // runs in thread moveToThread(qApp->thread()); // validated } -// disabled coco end /*! * \brief GuiController initializer @@ -176,10 +167,9 @@ */ void GuiController::doActionTransmit(GuiActionType vAction, const QVariantList &vData) { - // disabled coco begin validated: This is a sample code and currently does nothing + // 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)) { - // disabled coco end emit didActionTransmit(vAction, vData); } } @@ -195,7 +185,7 @@ */ bool GuiController::handleTransmit(GuiActionType vAction, const QVariantList &vData) { - // disabled coco begin validated: This is a sample code and currently does nothing + // This is a sample code and currently does nothing Q_UNUSED(vAction) Q_UNUSED(vData) @@ -224,7 +214,6 @@ } return false; } -// disabled coco end /*! * \brief Action commanded by HD @@ -247,11 +236,9 @@ */ void GuiController::onUSBDriveMount() { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually + // This needs user interaction to plug-in USB device emit didUSBDriveMount(); } -// disabled coco end /*! * \brief GuiController::doUSBDriveUmount @@ -260,11 +247,9 @@ */ void GuiController::doUSBDriveUmount() { - // disabled coco begin validated: This needs user interaction to plug-out the USB device - // has been tested manually + // This needs user interaction to plug-out the USB device emit didUSBDriveUmount(); } -// disabled coco end /*! * \brief GuiController::onUSBDriveRemove @@ -308,11 +293,9 @@ */ void GuiController::onSDCardSpaceTooLow(quint8 vAvailablePercent) { - // disabled coco begin validated: This needs to fill up the SD-Card and test with human interactions. - // has been tested manually + // This needs to fill up the SD-Card and test with human interactions. emit didSDCardSpaceTooLow(vAvailablePercent); } -// disabled coco end /*! * \brief GuiController::onExport