Changeset 6837 for code/branches/chat2/src
- Timestamp:
- May 3, 2010, 2:10:46 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/chat2/src/orxonox/ChatInputHandler.cc
r6836 r6837 109 109 void ChatInputHandler::inputChanged() 110 110 { 111 //this->updateListeners<&ShellListener::inputChanged>(); 112 //this->updateListeners<&ShellListener::cursorChanged>(); 111 113 112 } 114 113 … … 135 134 { 136 135 this->inpbuf->removeBehindCursor(); 137 //this->updateListeners<&ShellListener::inputChanged>();138 //this->updateListeners<&ShellListener::cursorChanged>();139 136 } 140 137 … … 142 139 { 143 140 this->inpbuf->removeAtCursor(); 144 //this->updateListeners<&ShellListener::inputChanged>();145 141 } 146 142 … … 148 144 { 149 145 this->inpbuf->increaseCursor(); 150 //this->updateListeners<&ShellListener::cursorChanged>();151 146 } 152 147 … … 154 149 { 155 150 this->inpbuf->decreaseCursor(); 156 //this->updateListeners<&ShellListener::cursorChanged>();157 151 } 158 152 … … 160 154 { 161 155 this->inpbuf->setCursorToEnd(); 162 //this->updateListeners<&ShellListener::cursorChanged>();163 156 } 164 157 … … 166 159 { 167 160 this->inpbuf->setCursorToBegin(); 168 //this->updateListeners<&ShellListener::cursorChanged>();169 161 } 170 162 171 163 void ChatInputHandler::exit() 172 164 { 173 //if (this->inpbuf->getSize() > 0)174 //{175 //this->clearInput();176 //return;177 //}178 165 179 //this->clearInput();180 //this->scrollPosition_ = 0;181 //this->scrollIterator_ = this->outputLines_.begin();182 183 //this->updateListeners<&ShellListener::exit>();184 166 } 185 167
Note: See TracChangeset
for help on using the changeset viewer.