| 1784 | } |
| 1785 | |
| 1786 | void Application::retranslateExportTypes() |
| 1787 | { |
| 1788 | auto cache = translatableExportTypeCache.getCache(); |
| 1789 | translatableExportTypeCache.clear(); |
| 1790 | std::erase_if(_mExportTypes, [](const FileTypeItem& item) { |
| 1791 | return item.translatable; |
| 1792 | }); |
| 1793 | for (const auto &cacheEntry : cache) { |
| 1794 | addTranslatableExportType(cacheEntry.description, cacheEntry.extensions, cacheEntry.moduleName); |
| 1795 | } |
| 1796 | } |
| 1797 | |
| 1798 | void Application::changeExportModule(const char* filter, const char* oldModuleName, const char* newModuleName) |
| 1799 | { |
no test coverage detected