| 89 | } |
| 90 | |
| 91 | QString MergeFileInfos::subPath() const |
| 92 | { |
| 93 | if(m_pFileInfoA != nullptr && m_pFileInfoA->exists()) |
| 94 | return m_pFileInfoA->fileRelPath(); |
| 95 | else if(m_pFileInfoB != nullptr && m_pFileInfoB->exists()) |
| 96 | return m_pFileInfoB->fileRelPath(); |
| 97 | else if(m_pFileInfoC != nullptr && m_pFileInfoC->exists()) |
| 98 | return m_pFileInfoC->fileRelPath(); |
| 99 | return QString(""); |
| 100 | } |
| 101 | |
| 102 | QString MergeFileInfos::fileName() const |
| 103 | { |
no test coverage detected