| 107 | void DownloadDictionariesDialog::indicate_that_saving_might_be_needed() { m_check_if_saving_is_needed = true; } |
| 108 | |
| 109 | LRESULT DownloadDictionariesDialog::ask_replacement_message(const wchar_t *dic_name) { |
| 110 | auto [name,_] = apply_alias(dic_name, m_settings.data.language_name_style); |
| 111 | return MessageBox(_hParent, wstring_printf(rc_str(IDS_DICT_PS_EXISTS_BODY).c_str(), name.c_str()).c_str(), rc_str(IDS_DICT_EXISTS_HEADER).c_str(), MB_YESNO); |
| 112 | } |
| 113 | |
| 114 | static std::wstring get_temp_path() { |
| 115 | std::vector<wchar_t> temp_path_buf(MAX_PATH); |
nothing calls this directly
no test coverage detected