| 342 | } |
| 343 | |
| 344 | static std::wstring get_menu_item_text(HMENU menu, UINT index) { |
| 345 | auto str_len = GetMenuString(menu, index, nullptr, 0, MF_BYPOSITION); |
| 346 | std::vector<wchar_t> buf(str_len + 1); |
| 347 | GetMenuString(menu, index, buf.data(), static_cast<int>(buf.size()), MF_BYPOSITION); |
| 348 | return buf.data(); |
| 349 | } |
| 350 | |
| 351 | static HMENU dspellcheck_menu_cached = nullptr; |
| 352 |
no test coverage detected