| 32 | } |
| 33 | |
| 34 | InputFilter::KeystrokeCondition::KeystrokeCondition(IEventQueue *events, IPlatformScreen::KeyInfo *info) |
| 35 | : m_key(info->m_key), |
| 36 | m_mask(info->m_mask), |
| 37 | m_events(events) |
| 38 | { |
| 39 | free(info); |
| 40 | } |
| 41 | |
| 42 | InputFilter::KeystrokeCondition::KeystrokeCondition(IEventQueue *events, KeyID key, KeyModifierMask mask) |
| 43 | : m_key(key), |
nothing calls this directly
no outgoing calls
no test coverage detected