Config: Keep track of deleted keys

This allows deleted keys to be deleted from INIs properly.
This commit is contained in:
Léo Lam
2017-02-15 16:25:37 +01:00
parent b51c6023ba
commit 9c3265f1ef
2 changed files with 4 additions and 0 deletions

View File

@ -120,6 +120,8 @@ bool Section::Delete(const std::string& key)
return false;
m_values.erase(it);
m_deleted_keys.push_back(key);
m_dirty = true;
return true;
}