Index: sources/storage/filehandler.cpp =================================================================== diff -u -r56d00a82669a7a2c00ab90109a89dbec8db27527 -rb9c5b0b3afc3b34d4980ecc4f023f498f80dafbc --- sources/storage/filehandler.cpp (.../filehandler.cpp) (revision 56d00a82669a7a2c00ab90109a89dbec8db27527) +++ sources/storage/filehandler.cpp (.../filehandler.cpp) (revision b9c5b0b3afc3b34d4980ecc4f023f498f80dafbc) @@ -77,8 +77,7 @@ * \param vDestination - The destination folder * \return Tue on successful execution. * \note This method uses the Linux "cp -r vSource vDestination" command - * Not a Thread-Safe method so made private to be called by export log - * QtConcurrent::run. + * Not a Thread-Safe. * */ int FileHandler::copyFolder(const QString &vSource, const QString &vDestination ) @@ -89,19 +88,3 @@ return QProcess::execute(cp, arguments); } -/*! - * \brief FileHandler::concurrentExportLog - * \details Exports the log files from log folder (Storage::Log_Base_Path_Name_Location) - * into USB drive folder (Storage::USB_Mount_Point) - * \return always returns true for now. - * \note This method uses QtConcurrent run to execute the copyFolder method. - */ -bool FileHandler::concurrentExportLog() -{ - QString mSource = Storage::Log_Base_Path_Name_Location; - QString mDestination = Storage::USB_Mount_Point; - //QFuture future = - QtConcurrent::run(this, &FileHandler::copyFolder, mSource, mDestination); - //return future.result(); - return true; -}