- Timestamp:
- Aug 28, 2010, 1:51:04 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/consolecommands3/src/libraries/core/command/CommandEvaluation.cc
r7235 r7236 213 213 { 214 214 std::string groupLC = getLowercase(this->getToken(0)); 215 std::map<std::string, std::map<std::string, _ConsoleCommand*> >::const_iterator it_group = _ConsoleCommand::getCommands().begin();216 for ( ; it_group != _ConsoleCommand::getCommands().end(); ++it_group)215 std::map<std::string, std::map<std::string, ConsoleCommand*> >::const_iterator it_group = ConsoleCommand::getCommands().begin(); 216 for ( ; it_group != ConsoleCommand::getCommands().end(); ++it_group) 217 217 if (getLowercase(it_group->first) == groupLC) 218 218 return std::string("Error: There is no command in group \"") + this->getToken(0) + "\" starting with \"" + this->getToken(1) + "\"."; … … 380 380 } 381 381 382 /* static */ std::string CommandEvaluation::dump(const _ConsoleCommand* command)382 /* static */ std::string CommandEvaluation::dump(const ConsoleCommand* command) 383 383 { 384 384 std::string output = command->getName();
Note: See TracChangeset
for help on using the changeset viewer.