| 75 | }; |
| 76 | |
| 77 | IBNotifyItemData(size_t _index, NotifyItem _notify, int _x, int _y, MouseButton _id) : |
| 78 | index(_index), |
| 79 | notify(_notify), |
| 80 | x(_x), |
| 81 | y(_y), |
| 82 | id(_id), |
| 83 | code(KeyCode::None), |
| 84 | key(0) |
| 85 | { |
| 86 | } |
| 87 | |
| 88 | IBNotifyItemData(size_t _index, NotifyItem _notify, KeyCode _code, Char _key) : |
| 89 | index(_index), |
no outgoing calls
no test coverage detected