| 211 | } |
| 212 | |
| 213 | TemporaryAcessor<Settings::Self> Settings::modify_without_saving() const { |
| 214 | auto non_const_this = const_cast<Self *>(this); |
| 215 | return {*non_const_this, [non_const_this]() { |
| 216 | non_const_this->settings_changed(); |
| 217 | }}; |
| 218 | } |
| 219 | |
| 220 | std::wstring_view Settings::get_dictionary_download_path() const { |
| 221 | return data.download_install_dictionaries_for_all_users ? data.hunspell_system_path : data.hunspell_user_path; |
no outgoing calls
no test coverage detected