| 185 | } |
| 186 | |
| 187 | void Settings::load() { |
| 188 | if (m_ini_filepath.empty()) |
| 189 | return; |
| 190 | IniWorker worker(app_name, m_ini_filepath, IniWorker::Action::load); |
| 191 | process(worker); |
| 192 | delete_log(); |
| 193 | print_to_log(L"void Settings::load()", nullptr); |
| 194 | settings_changed(); |
| 195 | } |
| 196 | |
| 197 | std::wstring &Settings::get_active_language() { return data.speller_language[data.active_speller_lib_id]; } |
| 198 |
no test coverage detected