Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 28, 2006, 12:03:54 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: Another CompletionMode is working

File:
1 edited

Legend:

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

    r7409 r7412  
    4747  void CompletorStringArray::addToCompleteList(std::vector<std::string>& completionList, const std::string& completionBegin) const
    4848  {
     49    printf("TEST\n");
    4950    unsigned int inputLen = completionBegin.size();
    5051    for (unsigned int i = 0; i < this->_size; ++i)
     52    {
     53      printf("%s\n", this->_stringArray[i].c_str());
    5154      if (!nocaseCmp(this->_stringArray[i], completionBegin, inputLen))
    5255        completionList.push_back(this->_stringArray[i]);
     56    }
    5357  }
    5458
Note: See TracChangeset for help on using the changeset viewer.