Changeset 7861 for code/trunk/src/libraries/core/command/ConsoleCommand.h
- Timestamp:
- Feb 12, 2011, 11:54:07 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/command/ConsoleCommand.h
r7401 r7861 510 510 /// Changes the keybind mode of the command. 511 511 inline ConsoleCommandManipulator& keybindMode(KeybindMode::Value mode) 512 { if (this->command_) { this->command_-> keybindMode(mode); } return *this; }512 { if (this->command_) { this->command_->changeKeybindMode(mode); } return *this; } 513 513 /// Sets the input configured param to the given index. 514 514 inline ConsoleCommandManipulator& inputConfiguredParam(int index) … … 598 598 } 599 599 600 /// Changes the keybindmode.600 /// Sets the keybind mode. Note: use changeKeybindMode if you intend to change the mode. 601 601 inline ConsoleCommand& keybindMode(KeybindMode::Value mode) 602 602 { this->keybindMode_ = mode; return *this; } … … 604 604 inline KeybindMode::Value getKeybindMode() const 605 605 { return this->keybindMode_; } 606 607 ConsoleCommand& changeKeybindMode(KeybindMode::Value mode); 606 608 607 609 /// Changes the input configured param to the given index.
Note: See TracChangeset
for help on using the changeset viewer.