| 53 | using ReverseLangHash = std::unordered_map<TranslatableString, wxString>; |
| 54 | |
| 55 | static void FindFilesInPathList(const wxString & pattern, |
| 56 | const FilePaths & pathList, FilePaths & results) |
| 57 | { |
| 58 | wxFileName ff; |
| 59 | for (const auto &path : pathList) { |
| 60 | ff = path + wxFILE_SEP_PATH + pattern; |
| 61 | wxDir::GetAllFiles(ff.GetPath(), &results, ff.GetFullName(), wxDIR_FILES); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | static bool TranslationExists(const FilePaths &pathList, wxString code) |
| 66 | { |
no test coverage detected