| 112 | } |
| 113 | |
| 114 | void Ctrl::buttonClicked(Button* clicked) { |
| 115 | publishValue(clicked->getToggleState()); |
| 116 | } |
| 117 | |
| 118 | void Ctrl::comboBoxChanged(ComboBox* combo) { |
| 119 | publishValue((combo->getSelectedId() - 1) / combo->getNumItems()); |
nothing calls this directly
no outgoing calls
no test coverage detected