"GroupName" -> "SongGroup" to make room for CourseGroup
replace checks for "cvs" with a call to StripCvs()
m_Rows -> m_pRows
broadcast on preferred group changes
This commit is contained in:
Chris Danford
2005-06-23 08:05:09 +00:00
parent f881b0bf4d
commit 2a6dcba6e8
33 changed files with 212 additions and 190 deletions
+4 -4
View File
@@ -412,9 +412,9 @@ public:
defOut.name = "Group";
Default.m_sSongGroup = GROUP_ALL_MUSIC;
vector<CString> vGroups;
SONGMAN->GetGroupNames( vGroups );
ASSERT( vGroups.size() );
vector<CString> vSongGroups;
SONGMAN->GetSongGroupNames( vSongGroups );
ASSERT( vSongGroups.size() );
{
defOut.choices.push_back( "AllGroups" );
@@ -423,7 +423,7 @@ public:
ListEntries.push_back( mc );
}
FOREACH_CONST( CString, vGroups, g )
FOREACH_CONST( CString, vSongGroups, g )
{
defOut.choices.push_back( *g );
GameCommand mc;