Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Apr 27, 2006, 6:37:38 PM (18 years ago)
Author:
bensch
Message:

sync

File:
1 edited

Legend:

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

    r7404 r7406  
    4646  /**
    4747   * @brief autocompletes the Shell's inputLine
    48    * @param input the input to complete.
     48   * @param input the input to complete, will most possibly be changed.
    4949   * @returns true, if a result was found, false otherwise
    5050   */
    5151  bool ShellCompletion::autoComplete(std::string& input)
    5252  {
    53     long classID = CL_NULL;                     //< the classID retrieved from the Class.
    54     const std::list<BaseObject*>* objectList //< the list of Objects stored in classID's ClassList
    55     bool emptyComplete = false;                 //< if the completion input is empty string. e.g ""
    56     long completeType = NullCompletion;         //< the Type we'd like to complete.
    57     std::string completeString = "";            //< the string to complete.
     53    long classID = CL_NULL;                          //< the classID retrieved from the Class.
     54    const std::list<BaseObject*>* objectList = NULL; //< the list of Objects stored in classID's ClassList
     55    bool emptyComplete = false;                      //< if the completion input is empty string. e.g ""
     56    long completeType = NullCompletion;              //< the Type we'd like to complete.
     57    std::string completeString = "";                 //< the string to complete.
    5858
    5959
Note: See TracChangeset for help on using the changeset viewer.