static
| 38 | |
| 39 | //static |
| 40 | void IKeyboardFocusListener::ClearActiveKeyboardFocus(bool notifyListeners) |
| 41 | { |
| 42 | if (sCurrentKeyboardFocus && notifyListeners) |
| 43 | sCurrentKeyboardFocus->AcceptEntry(false); |
| 44 | sCurrentKeyboardFocus = nullptr; |
| 45 | } |
| 46 | |
| 47 | TextEntry::TextEntry(ITextEntryListener* owner, const char* name, int x, int y, int charWidth, char* var) |
| 48 | : mVarCString(var) |
nothing calls this directly
no test coverage detected