@brief stash away true names for display, before opening files */
| 45 | |
| 46 | /** @brief stash away true names for display, before opening files */ |
| 47 | void DiffFileData::SetDisplayFilepaths(const String& szTrueFilepath1, const String& szTrueFilepath2) |
| 48 | { |
| 49 | m_sDisplayFilepath[0] = szTrueFilepath1; |
| 50 | m_sDisplayFilepath[1] = szTrueFilepath2; |
| 51 | } |
| 52 | |
| 53 | /** @brief Open file descriptors in the inf structure (return false if failure) */ |
| 54 | bool DiffFileData::DoOpenFiles() |
no outgoing calls
no test coverage detected