| 169 | } |
| 170 | |
| 171 | void SpellChecker::remove_underline(TextPosition start, TextPosition end) const { |
| 172 | m_editor.set_current_indicator(spell_check_indicator_id); |
| 173 | m_editor.indicator_clear_range(start, end); |
| 174 | } |
| 175 | |
| 176 | TextPosition SpellChecker::prev_token_begin_in_document(TextPosition start) const { |
| 177 | TextPosition shift = 15; |
nothing calls this directly
no test coverage detected