remove unused parameter

This commit is contained in:
Glenn Maynard
2006-08-15 19:24:29 +00:00
parent 832679370b
commit cbc69ea550
12 changed files with 31 additions and 31 deletions
+2 -2
View File
@@ -148,7 +148,7 @@ GenreDisplay::~GenreDisplay()
{
}
void GenreDisplay::PlayCommand( const RString &sCommandName, Actor* pParent )
void GenreDisplay::PlayCommand( const RString &sCommandName )
{
if( sCommandName == MessageToString(Message_CurrentSongChanged) )
{
@@ -189,7 +189,7 @@ void GenreDisplay::PlayCommand( const RString &sCommandName, Actor* pParent )
}
else
{
Actor::PlayCommand( sCommandName, pParent );
Actor::PlayCommand( sCommandName );
}
}