| 283 | } |
| 284 | |
| 285 | void TextEntry::SelectAll() |
| 286 | { |
| 287 | mCaretPosition = 0; |
| 288 | mCaretPosition2 = (int)strnlen(mString, MAX_TEXTENTRY_LENGTH); |
| 289 | } |
| 290 | |
| 291 | void TextEntry::OnKeyPressed(int key, bool isRepeat) |
| 292 | { |
no outgoing calls
no test coverage detected