| 968 | } |
| 969 | |
| 970 | void EditBox::resetSelect() |
| 971 | { |
| 972 | if (mStartSelect != ITEM_NONE) |
| 973 | { |
| 974 | mStartSelect = ITEM_NONE; |
| 975 | if (mClientText != nullptr) |
| 976 | mClientText->setTextSelection(0, 0); |
| 977 | } |
| 978 | } |
| 979 | |
| 980 | void EditBox::commandPosition(size_t _undo, size_t _redo, size_t _length, VectorChangeInfo* _info) |
| 981 | { |
nothing calls this directly
no test coverage detected