| 149 | struct MidiChannelItem : ui::MenuItem { |
| 150 | midi::Port* port; |
| 151 | ui::Menu* createChildMenu() override { |
| 152 | ui::Menu* menu = new ui::Menu; |
| 153 | appendMidiChannelMenu(menu, port); |
| 154 | return menu; |
| 155 | } |
| 156 | }; |
| 157 | |
| 158 |
nothing calls this directly
no test coverage detected