| 679 | } |
| 680 | |
| 681 | void WINAPI scroll_recheck_callback() { |
| 682 | scroll_recheck_timer->stop_timer(); |
| 683 | |
| 684 | ACTIVE_VIEW_BLOCK(npp_interface()); |
| 685 | spell_checker->recheck_visible(); |
| 686 | if (!first_restyle) |
| 687 | restyling_caused_recheck_was_done = true; |
| 688 | first_restyle = false; |
| 689 | } |
| 690 | |
| 691 | std::wstring_view rc_str_view(UINT string_id) { |
| 692 | const wchar_t *ret = nullptr; |
nothing calls this directly
no test coverage detected