use templated GetValue, not old RString GetValue()
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user