| 960 | /* --- Airport button menu --- */ |
| 961 | |
| 962 | static CallBackFunction ToolbarBuildAirClick(Window *w) |
| 963 | { |
| 964 | DropDownList list; |
| 965 | list.push_back(MakeDropDownListIconItem(SPR_IMG_AIRPORT, PAL_NONE, STR_AIRCRAFT_MENU_AIRPORT_CONSTRUCTION, 0)); |
| 966 | ShowDropDownList(w, std::move(list), 0, WID_TN_AIR, 140, GetToolbarDropDownOptions()); |
| 967 | return CBF_NONE; |
| 968 | } |
| 969 | |
| 970 | /** |
| 971 | * Handle click on the entry in the Build Air menu. |
nothing calls this directly
no test coverage detected