| 140 | struct NextButton : ui::Button { |
| 141 | TipWindow* tipWindow; |
| 142 | void onAction(const ActionEvent& e) override { |
| 143 | tipWindow->advanceTip(); |
| 144 | } |
| 145 | }; |
| 146 | NextButton* nextButton = new NextButton; |
| 147 | nextButton->box.size.x = buttonWidth; |
nothing calls this directly
no test coverage detected