Changeset 8350 in orxonox.OLD for trunk/src/lib/shell/shell_command.cc
- Timestamp:
- Jun 13, 2006, 10:01:55 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/shell/shell_command.cc
r7771 r8350 149 149 const ShellCommand* const ShellCommand::getCommandFromInput(const std::string& inputLine, unsigned int& paramBegin, std::vector<BaseObject*>* boList) 150 150 { 151 ShellCommand::getCommandFromInput(SubString(inputLine, SubString::WhiteSpaces), paramBegin);151 return ShellCommand::getCommandFromInput(SubString(inputLine, SubString::WhiteSpaces), paramBegin); 152 152 } 153 153 … … 194 194 if (cmdClass != NULL) 195 195 { 196 const ShellCommand* retCmd ;196 const ShellCommand* retCmd = NULL; 197 197 // Function/Command right after Class 198 198 if (strings.size() >= 1)
Note: See TracChangeset
for help on using the changeset viewer.