"ParsedCommand" -> "ActorCommand"

This commit is contained in:
Chris Danford
2004-11-06 20:42:09 +00:00
parent 5127ceef4d
commit 6c855f0c93
13 changed files with 35 additions and 35 deletions
+2 -2
View File
@@ -246,7 +246,7 @@ ScreenOptionsMaster::ScreenOptionsMaster( CString sClassName ):
CString sRowCommands = LINE(sLineName);
vector<ParsedCommand> vCommands;
vector<ActorCommand> vCommands;
ParseCommands( sRowCommands, vCommands );
if( vCommands.size() < 1 )
@@ -255,7 +255,7 @@ ScreenOptionsMaster::ScreenOptionsMaster( CString sClassName ):
OptionRowHandler hand;
for( unsigned part = 0; part < vCommands.size(); ++part)
{
ParsedCommand& command = vCommands[part];
ActorCommand& command = vCommands[part];
BeginHandleParams;