| 142 | std::string DicInfo::to_dictionary_encoding(std::wstring_view input) const { return convert_impl<char>(converter, input); } |
| 143 | |
| 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) { |