drop cache if dictionary was removed
| 357 | |
| 358 | // drop cache if dictionary was removed |
| 359 | void HunspellInterface::dictionary_removed(const std::wstring &path) { m_all_hunspells.erase(path); } |
| 360 | |
| 361 | std::wstring HunspellInterface::create_encoded_dict_version(const wchar_t *dict_path, const char *target_encoding) { |
| 362 | std::ifstream is(dict_path); |
no test coverage detected