| 53 | } |
| 54 | |
| 55 | std::unique_ptr<DropDownListItem> MakeDropDownListCheckedItem(bool checked, StringID str, int value, bool masked, bool shaded, uint indent) |
| 56 | { |
| 57 | return std::make_unique<DropDownListCheckedItem>(indent, checked, GetString(str), value, masked, shaded); |
| 58 | } |
| 59 | |
| 60 | static constexpr std::initializer_list<NWidgetPart> _nested_dropdown_menu_widgets = { |
| 61 | NWidget(NWID_HORIZONTAL), |
no test coverage detected