Codechange: Move initialization of group-type to CreateGroup function.

This commit is contained in:
Peter Nelson
2023-10-10 19:26:00 +01:00
committed by Peter Nelson
parent 8bd06807e4
commit ec1cf96b62
2 changed files with 7 additions and 6 deletions

View File

@@ -41,7 +41,7 @@ struct IniGroup {
std::string name; ///< name of group
std::string comment; ///< comment for group
IniGroup(struct IniLoadFile *parent, const std::string &name);
IniGroup(struct IniLoadFile *parent, const std::string &name, IniGroupType type);
~IniGroup();
IniItem *GetItem(const std::string &name) const;