| 115 | } |
| 116 | |
| 117 | void GuiTextCtrl::inspectPostApply() |
| 118 | { |
| 119 | Parent::inspectPostApply(); |
| 120 | if(mInitialTextID && *mInitialTextID != 0) |
| 121 | setTextID(mInitialTextID); |
| 122 | else if( mConsoleVariable[ 0 ] ) |
| 123 | setText( getVariable() ); |
| 124 | else |
| 125 | setText(mInitialText); |
| 126 | } |
| 127 | |
| 128 | bool GuiTextCtrl::onWake() |
| 129 | { |
nothing calls this directly
no test coverage detected