From 96caf9785147fe66d357fe803537a8d34a275e02 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 11 Feb 2007 00:44:57 +0000 Subject: [PATCH] use FOREACH_Attr --- stepmania/src/XmlFileUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/XmlFileUtil.cpp b/stepmania/src/XmlFileUtil.cpp index 0fd522709b..c0d5483d6a 100644 --- a/stepmania/src/XmlFileUtil.cpp +++ b/stepmania/src/XmlFileUtil.cpp @@ -749,7 +749,7 @@ void XmlFileUtil::MergeIniUnder( XNode *pFrom, XNode *pTo ) } else { - FOREACHM( RString, XNodeValue *, pSectionNode->m_attrs, it2 ) + FOREACH_Attr( pSectionNode, it2 ) { /* Don't overwrite existing nodes. */ pChildNode->AppendAttrFrom( it2->first, it2->second->Copy(), false );