| 910 | } |
| 911 | |
| 912 | void TextFieldEx::__hideCursor(void) |
| 913 | { |
| 914 | if (_cursor) |
| 915 | { |
| 916 | _cursor->setVisible(false); |
| 917 | _cursorVisible = false; |
| 918 | _cursor->stopAllActions(); |
| 919 | } |
| 920 | } |
| 921 | |
| 922 | void TextFieldEx::__updateCursorPosition(void) |
| 923 | { |
nothing calls this directly
no test coverage detected