Changeset 5157 in orxonox.OLD for trunk/src/util
- Timestamp:
- Sep 2, 2005, 6:05:36 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/shell.cc
r5154 r5157 165 165 this->bufferIterator->lastElement(); 166 166 for (int i = 0; i < this->bufferDisplaySize; i++) 167 this->bufferText[i]->setText(this->bufferIterator->prevElement() );167 this->bufferText[i]->setText(this->bufferIterator->prevElement(), true); 168 168 } 169 169 … … 180 180 this->setRelCoorSoft2D(0, -400, 1, 5); 181 181 182 this->bufferIterator->lastElement(); 183 for (int i = 0; i < this->bufferDisplaySize; i++) 184 this->bufferText[i]->setText(this->bufferIterator->prevElement(), false); 182 185 } 183 186 … … 458 461 delete this->inputLine; 459 462 this->inputLine = addCharLine; 460 this->inputLineText->setText(inputLine );463 this->inputLineText->setText(inputLine, true); 461 464 } 462 465 … … 479 482 delete this->inputLine; 480 483 this->inputLine = removeCharLine; 481 this->inputLineText->setText(inputLine );484 this->inputLineText->setText(inputLine, true); 482 485 } 483 486
Note: See TracChangeset
for help on using the changeset viewer.