| 33 | } |
| 34 | |
| 35 | std::unique_ptr<DropDownListItem> MakeDropDownListStringItem(StringID str, int value, bool masked, bool shaded) |
| 36 | { |
| 37 | return MakeDropDownListStringItem(GetString(str), value, masked, shaded); |
| 38 | } |
| 39 | |
| 40 | std::unique_ptr<DropDownListItem> MakeDropDownListStringItem(std::string &&str, int value, bool masked, bool shaded) |
| 41 | { |
no test coverage detected