| 219 | } |
| 220 | |
| 221 | void GuiTextCtrl::onPreRender() |
| 222 | { |
| 223 | Parent::onPreRender(); |
| 224 | |
| 225 | const char * var = getVariable(); |
| 226 | if(var && var[0] && dStricmp((char*)mText, var)) |
| 227 | setText(var); |
| 228 | } |
| 229 | |
| 230 | void GuiTextCtrl::onRender(Point2I offset, const RectI &updateRect) |
| 231 | { |
nothing calls this directly
no test coverage detected