This commit is contained in:
Glenn Maynard
2005-06-27 05:24:24 +00:00
parent 67477a6192
commit ebe60c9eb7
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -181,7 +181,7 @@ bool IniFile::RenameKey(const CString &from, const CString &to)
m_childs.erase( it );
pNode->m_sName = to;
m_childs.insert( pair<CString,XNode*>(pNode->m_sName,pNode) );
m_childs.insert( make_pair(pNode->m_sName, pNode) );
return true;
}