| 567 | } |
| 568 | |
| 569 | void OnDropdownSelect(WidgetID widget, int index, int) override |
| 570 | { |
| 571 | if (widget == WID_AP_CLASS_DROPDOWN) { |
| 572 | _selected_airport_class = (AirportClassID)index; |
| 573 | this->vscroll->SetCount(AirportClass::Get(_selected_airport_class)->GetSpecCount()); |
| 574 | this->SelectFirstAvailableAirport(false); |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | void OnRealtimeTick([[maybe_unused]] uint delta_ms) override |
| 579 | { |
nothing calls this directly
no test coverage detected