| 170 | } |
| 171 | |
| 172 | QString MergeFileInfos::fullNameDest() const |
| 173 | { |
| 174 | if(gDirInfo->destDir().prettyAbsPath() == gDirInfo->dirC().prettyAbsPath()) |
| 175 | return fullNameC(); |
| 176 | else if(gDirInfo->destDir().prettyAbsPath() == gDirInfo->dirB().prettyAbsPath()) |
| 177 | return fullNameB(); |
| 178 | else |
| 179 | return gDirInfo->destDir().absoluteFilePath() + '/' + subPath(); |
| 180 | } |
| 181 | |
| 182 | bool MergeFileInfos::compareFilesAndCalcAges(QStringList& errors, DirectoryMergeWindow* pDMW) |
| 183 | { |
no test coverage detected