fix selection of all music group

This commit is contained in:
Chris Danford
2006-01-08 19:49:14 +00:00
parent 9122e2f935
commit 8794ccaf3f
+2 -2
View File
@@ -28,6 +28,7 @@ ScreenSelectGroup::ScreenSelectGroup( CString sClassName ) : ScreenWithMenuEleme
LOG->Trace( "ScreenSelectGroup::ScreenSelectGroup()" ); LOG->Trace( "ScreenSelectGroup::ScreenSelectGroup()" );
} }
static LocalizedString ALL_MUSIC_STRING( "ScreenSelectGroup", "ALL MUSIC" );
void ScreenSelectGroup::Init() void ScreenSelectGroup::Init()
{ {
ScreenWithMenuElements::Init(); ScreenWithMenuElements::Init();
@@ -62,7 +63,7 @@ void ScreenSelectGroup::Init()
// copy group names into a vector // copy group names into a vector
vector<CString> asGroupNames; vector<CString> asGroupNames;
asGroupNames.push_back( "ALL MUSIC" ); // special group asGroupNames.push_back( ALL_MUSIC_STRING ); // special group
for( map<CString, CString>::const_iterator iter = mapGroupNames.begin(); iter != mapGroupNames.end(); ++iter ) for( map<CString, CString>::const_iterator iter = mapGroupNames.begin(); iter != mapGroupNames.end(); ++iter )
asGroupNames.push_back( iter->first ); asGroupNames.push_back( iter->first );
@@ -150,7 +151,6 @@ void ScreenSelectGroup::HandleScreenMessage( const ScreenMessage SM )
Screen::HandleScreenMessage( SM ); Screen::HandleScreenMessage( SM );
} }
static LocalizedString ALL_MUSIC_STRING( "ScreenSelectGroup", "ALL MUSIC" );
void ScreenSelectGroup::AfterChange() void ScreenSelectGroup::AfterChange()
{ {
int sel = m_GroupList.GetSelection(); int sel = m_GroupList.GetSelection();