| 35 | } |
| 36 | |
| 37 | void remove(Shortcut id) |
| 38 | { |
| 39 | auto it = findShortcut(id); |
| 40 | if (it == std::end(_shortcuts) || it->id != id) |
| 41 | { |
| 42 | return; |
| 43 | } |
| 44 | _shortcuts.erase(it); |
| 45 | } |
| 46 | |
| 47 | void execute(Shortcut id) |
| 48 | { |
nothing calls this directly
no test coverage detected