use templated GetValue, not old RString GetValue()

This commit is contained in:
Glenn Maynard
2007-02-11 00:30:44 +00:00
parent 95fdd553de
commit 5135b7b27c
2 changed files with 6 additions and 2 deletions
+5 -1
View File
@@ -189,7 +189,11 @@ bool Workout::LoadFromFile( RString sFile )
FOREACH_CONST_Child( songGenres, songGenre )
{
if( songGenre->GetName() == "SongGenre" )
m_vsSongGenres.push_back( songGenre->GetValue() );
{
RString s;
songGenre->GetValue( s );
m_vsSongGenres.push_back( s );
}
}
}
return true;