@brief Return path to left/right file, including all but file name */
| 20 | |
| 21 | /** @brief Return path to left/right file, including all but file name */ |
| 22 | String DIFFITEM::getFilepath(int nIndex, const String &sRoot) const |
| 23 | { |
| 24 | if (diffcode.exists(nIndex)) |
| 25 | { |
| 26 | return paths::ConcatPath(sRoot, diffFileInfo[nIndex].path); |
| 27 | } |
| 28 | return _T(""); |
| 29 | } |
| 30 | |
| 31 | /** @brief Return the relative path to file/folder including the item name*/ |
| 32 | String DIFFITEM::getItemRelativePath() const |
no test coverage detected