| 144 | std::wstring DicInfo::from_dictionary_encoding(std::string_view input) const { return convert_impl<wchar_t>(back_converter, input); } |
| 145 | |
| 146 | HunspellInterface::HunspellInterface(HWND npp_window_arg, const Settings &settings) |
| 147 | : m_use_one_dic(false), m_settings(settings) { |
| 148 | m_npp_window = npp_window_arg; |
| 149 | m_singular_speller = {}; |
| 150 | m_last_selected_speller = {}; |
| 151 | m_is_hunspell_working = false; |
| 152 | } |
| 153 | |
| 154 | void HunspellInterface::update_on_dic_removal(wchar_t *path, bool &need_single_lang_reset, bool &need_multi_lang_reset) { |
| 155 | auto it = m_all_hunspells.find(path); |
nothing calls this directly
no outgoing calls
no test coverage detected