* Load a WindowDesc from config. * @param ini IniFile handle to the ini file with the source data * @param grpname character string identifying the section-header of the ini file that will be parsed * @param desc Destination WindowDesc */
| 871 | * @param desc Destination WindowDesc |
| 872 | */ |
| 873 | void IniLoadWindowSettings(IniFile &ini, std::string_view grpname, WindowDesc *desc) |
| 874 | { |
| 875 | IniLoadSettings(ini, _window_settings, grpname, desc, false); |
| 876 | } |
| 877 | |
| 878 | /** |
| 879 | * Save a WindowDesc to config. |
no test coverage detected