| 114 | } |
| 115 | |
| 116 | void add(size_t index, StringId title) |
| 117 | { |
| 118 | assert(index < std::numeric_limits<uint8_t>::max()); |
| 119 | |
| 120 | _dropdownItemFormats[index] = title; |
| 121 | } |
| 122 | |
| 123 | void add(size_t index, StringId title, std::initializer_list<format_arg> l) |
| 124 | { |
no test coverage detected