Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 28, 2010, 1:51:04 AM (14 years ago)
Author:
landauf
Message:

replaced the temporary names of all ConsoleCommand related classes and functions by their real names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/consolecommands3/src/libraries/core/command/CommandEvaluation.cc

    r7235 r7236  
    213213            {
    214214                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)
    217217                    if (getLowercase(it_group->first) == groupLC)
    218218                        return std::string("Error: There is no command in group \"") + this->getToken(0) + "\" starting with \"" + this->getToken(1) + "\".";
     
    380380    }
    381381
    382     /* static */ std::string CommandEvaluation::dump(const _ConsoleCommand* command)
     382    /* static */ std::string CommandEvaluation::dump(const ConsoleCommand* command)
    383383    {
    384384        std::string output = command->getName();
Note: See TracChangeset for help on using the changeset viewer.