- Timestamp:
- Aug 30, 2010, 7:52:33 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/consolecommands3/src/libraries/core/command/ConsoleCommand.cc
r7267 r7270 193 193 { 194 194 Command command; 195 command.executor_ = this-> getExecutor();195 command.executor_ = this->executor_; 196 196 if (command.executor_) 197 command.functor_ = this-> getExecutor()->getFunctor();197 command.functor_ = this->executor_->getFunctor(); 198 198 199 199 if (this->setFunction(executor, bForce)) … … 204 204 { 205 205 Command command; 206 command.executor_ = this-> getExecutor();206 command.executor_ = this->executor_; 207 207 if (command.executor_) 208 command.functor_ = this-> getExecutor()->getFunctor();208 command.functor_ = this->executor_->getFunctor(); 209 209 210 210 if (this->setFunction(functor, bForce))
Note: See TracChangeset
for help on using the changeset viewer.