Simplify: store attributes in a simple map<CString,CString>, not in an object.

Makes attributes lighter.
This commit is contained in:
Glenn Maynard
2005-10-11 10:24:07 +00:00
parent f533842452
commit 64d9c29568
8 changed files with 68 additions and 132 deletions
+1 -1
View File
@@ -775,7 +775,7 @@ void ThemeManager::GetModifierNames( vector<CString>& AddTo )
if( cur )
{
FOREACH_CONST_Attr( cur, p )
AddTo.push_back( p->m_sName );
AddTo.push_back( p->first );
}
}
}