| 474 | } |
| 475 | |
| 476 | std::wstring get_debug_log_path() { |
| 477 | std::vector<wchar_t> buf(MAX_PATH); |
| 478 | GetTempPath(static_cast<DWORD>(buf.size()), buf.data()); |
| 479 | std::wstring path = buf.data(); |
| 480 | path += L"\\DSpellCheck_Debug_Log.txt"; |
| 481 | return path; |
| 482 | } |
| 483 | |
| 484 | void rearrange_menu() { |
| 485 | auto plugin_menu = get_this_plugin_menu(); |
no test coverage detected