Index: sources/storage/filehandler.cpp =================================================================== diff -u -r31b9ae63410e7ca23f0f849e38368880e4c402b4 -rea143a3b9822a985e0e6c2bad746cd04ae77e018 --- sources/storage/filehandler.cpp (.../filehandler.cpp) (revision 31b9ae63410e7ca23f0f849e38368880e4c402b4) +++ sources/storage/filehandler.cpp (.../filehandler.cpp) (revision ea143a3b9822a985e0e6c2bad746cd04ae77e018) @@ -90,6 +90,8 @@ */ int FileHandler::copyFolder(const QString &vSource, const QString &vDestination ) { + // coco begin validated: This needs user interaction to export to USB device + // has been tested manually since currently it is the only place it has been used. QString cp = "cp"; QStringList arguments; arguments << "-r" << vSource << vDestination; @@ -101,4 +103,4 @@ return result; } - +// coco end