(svn r14167) -Fix: items in some ini-groups got duplicated on save.

This commit is contained in:
rubidium
2008-08-25 15:15:41 +00:00
parent 262ddecfc5
commit 621a9b647a
3 changed files with 10 additions and 20 deletions

View File

@@ -26,14 +26,6 @@ struct IniItem {
*/
IniItem(struct IniGroup *parent, const char *name, size_t len = 0);
/**
* Construct a new in-memory item of an Ini file.
* @param parent the group we belong to
* @param name the name of the item
* @param value the value to immediatelly assign
*/
IniItem(IniGroup *parent, const char *name, const char *value);
/** Free everything we loaded. */
~IniItem();