| 33 | } // namespace |
| 34 | |
| 35 | AspellInterface::AspellInterface(HWND npp_window_arg, const Settings &settings) |
| 36 | : m_single_speller(wrap_speller(nullptr)), m_settings(settings) { |
| 37 | m_npp_window = npp_window_arg; |
| 38 | m_last_selected_speller = nullptr; |
| 39 | m_aspell_loaded = false; |
| 40 | } |
| 41 | |
| 42 | std::vector<LanguageInfo> AspellInterface::get_language_list() const { |
| 43 | if (!m_aspell_loaded) { |
nothing calls this directly
no test coverage detected