Index: sources/storage/TreatmentLog.cpp =================================================================== diff -u -r0536992850014cee0a949958ce56c0008615da41 -rc2ed4667b513c51c5ee31566c15d2cf5a042ed61 --- sources/storage/TreatmentLog.cpp (.../TreatmentLog.cpp) (revision 0536992850014cee0a949958ce56c0008615da41) +++ sources/storage/TreatmentLog.cpp (.../TreatmentLog.cpp) (revision c2ed4667b513c51c5ee31566c15d2cf5a042ed61) @@ -283,7 +283,7 @@ * \details sets the treatment log path if the given type is treatment log, with the path, vLogPath. * If the given vLogPath is empty, the defaults in Storage will be used. * \sa Storage::SDCard_Base_Path_Name - * \sa Storage::Log_Folder_Treatment + * \sa Storage::Txr_Folder_Treatment * \param vLogType - The Log type of type Logger::LogType * \param vLogPath - the path to be set and used. */ @@ -293,7 +293,7 @@ if ( vLogPath.trimmed().isEmpty() ) { _treatmentLogPath = QString("%1%2") .arg(Storage::Settings_Path()) - .arg(Storage::Log_Folder_Treatment ); + .arg(Storage::Txr_Folder_Treatment ); } else { _treatmentLogPath = vLogPath; @@ -491,7 +491,7 @@ bool ok = true; QString status = ""; QString dstPath = Storage::USB_Mount_Point ; - dstPath += Storage::Log_Folder_Treatment ; + dstPath += Storage::Txr_Folder_Treatment ; QString srcFile = _lastTxInfo.mFileName ; QString srcFileName = QFileInfo(srcFile).fileName() ; QString dstFile = dstPath + srcFileName;