| 604 | } |
| 605 | |
| 606 | void MSWindowsKeyState::disable() |
| 607 | { |
| 608 | if (m_fixTimer != nullptr) { |
| 609 | m_events->removeHandler(EventTypes::Timer, m_fixTimer); |
| 610 | m_events->deleteTimer(m_fixTimer); |
| 611 | m_fixTimer = nullptr; |
| 612 | } |
| 613 | m_lastDown = 0; |
| 614 | } |
| 615 | |
| 616 | KeyButton MSWindowsKeyState::virtualKeyToButton(UINT virtualKey) const |
| 617 | { |
nothing calls this directly
no test coverage detected