Index: sources/gui/guiview.cpp =================================================================== diff -u -r8f6f7c11390e3ed6d918f1717d8e8b7ae5b7e5c6 -reea63d68fc0fb269f8dec64d99f488bcad117220 --- sources/gui/guiview.cpp (.../guiview.cpp) (revision 8f6f7c11390e3ed6d918f1717d8e8b7ae5b7e5c6) +++ sources/gui/guiview.cpp (.../guiview.cpp) (revision eea63d68fc0fb269f8dec64d99f488bcad117220) @@ -91,8 +91,12 @@ */ void GuiView::doActionTransmit(GuiActionType vAction, const QVariantList &vData) { + // TODO : Remove this code later when Investigated throughly. + // coco begin validated: This code later needs to be removed when Investigated throughly. + // has been tested manually emit didActionTransmit(vAction, vData); } +// coco end /*! * \brief GuiView::doActionTransmit @@ -105,10 +109,14 @@ void GuiView::doActionTransmit(GuiActionType vAction, const QVariant &vData) { + // TODO : Remove this code later when Investigated throughly. + // coco begin validated: This code later needs to be removed when Investigated throughly. + // has been tested manually QVariantList mData; mData += vData; emit didActionTransmit(vAction, mData); } +// coco end /*! * \brief GuiView::doUSBDriveMount @@ -117,8 +125,11 @@ */ void GuiView::doUSBDriveMount () { + // coco begin validated: This needs user interaction to plug-in USB device + // has been tested manually emit didUSBDriveMount (); } +// coco end /*! * \brief GuiView::doUSBDriveUmount @@ -127,8 +138,11 @@ */ void GuiView::doUSBDriveUmount() { + // coco begin validated: This needs user interaction to plug-in USB device + // has been tested manually emit didUSBDriveUmount(); } +// coco end /*! * \brief GuiView::doUSBDriveRemove @@ -137,8 +151,11 @@ */ void GuiView::doUSBDriveRemove() { + // coco begin validated: This needs user interaction to plug-in USB device + // has been tested manually emit didUSBDriveRemove(); } +// coco end /*! * \brief GuiView::onExport @@ -147,8 +164,11 @@ */ void GuiView::doExport() { + // coco begin validated: This needs user interaction to plug-in USB device + // has been tested manually emit didExport(); } +// coco end /*! * \brief GuiView::doExportLog @@ -157,5 +177,8 @@ */ void GuiView::doExportLog() { + // coco begin validated: This needs user interaction to plug-in USB device + // has been tested manually emit didExportLog(); } +// coco end