| 253 | } |
| 254 | |
| 255 | String PatchBrowserSelector::getCopyMoveMap(int p_index) { |
| 256 | |
| 257 | auto it = m_copy_move_map.find(p_index); |
| 258 | if (it != m_copy_move_map.end()) { |
| 259 | return it->second; |
| 260 | } |
| 261 | return ""; |
| 262 | } |
| 263 | |
| 264 | void PatchBrowserSelector::checkDirectoryStatus() { |
| 265 | if (!File(m_absolute_path).isDirectory()) { |
nothing calls this directly
no outgoing calls
no test coverage detected