* Load all WindowDesc settings from _windows_file. */
| 153 | * Load all WindowDesc settings from _windows_file. |
| 154 | */ |
| 155 | void WindowDesc::LoadFromConfig() |
| 156 | { |
| 157 | IniFile ini; |
| 158 | ini.LoadFromDisk(_windows_file, NO_DIRECTORY); |
| 159 | for (WindowDesc *wd : *_window_descs) { |
| 160 | if (wd->ini_key.empty()) continue; |
| 161 | IniLoadWindowSettings(ini, wd->ini_key, wd); |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * Sort WindowDesc by ini_key. |
nothing calls this directly
no test coverage detected