Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7386 in orxonox.OLD for trunk/src/lib/shell/shell_completion.cc


Ignore:
Timestamp:
Apr 26, 2006, 10:24:31 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: completions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/shell/shell_completion.cc

    r7374 r7386  
    170170  {
    171171    std::list<std::string> fktList;
    172     ShellCommandClass::getCommandListOfClass(className, &fktList);
     172    ShellCommandClass::getCommandListOfClass(className, fktList);
    173173    //printf("%s\n", boList->firstElement()->getName());
    174174    if (!this->addToCompleteList(fktList, functionBegin, FunctionCompletion))
     
    185185  {
    186186    std::list<std::string> aliasList;
    187     ShellCommandClass::getCommandListOfAlias(&aliasList);
     187    ShellCommandClass::getCommandListOfAlias(aliasList);
    188188    //printf("%s\n", boList->firstElement()->getName());
    189189    if (!this->addToCompleteList(aliasList, aliasBegin, AliasCompletion))
Note: See TracChangeset for help on using the changeset viewer.