| 209 | } |
| 210 | |
| 211 | void GuiTextEditCtrl::execConsoleCallback() |
| 212 | { |
| 213 | // Execute the console command! |
| 214 | Parent::execConsoleCallback(); |
| 215 | |
| 216 | // Update the console variable: |
| 217 | if ( mConsoleVariable[0] ) |
| 218 | Con::setVariable(mConsoleVariable, mTextBuffer.getPtr8()); |
| 219 | } |
| 220 | |
| 221 | void GuiTextEditCtrl::updateHistory( StringBuffer *inTxt, bool moveIndex ) |
| 222 | { |
nothing calls this directly
no test coverage detected