work around compiler bug (picks up the wrong "s")

This commit is contained in:
Glenn Maynard
2005-08-05 16:16:18 +00:00
parent 1a9b738d8b
commit 60c6cab3f7
@@ -74,8 +74,8 @@ void ScreenOptionsEditCourseEntry::Init()
vector<CString> vsSongGroups;
SONGMAN->GetSongGroupNames( vsSongGroups );
def.m_vsChoices.push_back( "(any)" );
FOREACH_CONST( CString, vsSongGroups, s )
def.m_vsChoices.push_back( *s );
FOREACH_CONST( CString, vsSongGroups, song )
def.m_vsChoices.push_back( *song );
vDefs.push_back( def );
vHands.push_back( NULL );