| 206 | } |
| 207 | |
| 208 | void Window_VarList::SetItemText(unsigned index, std::string_view text) { |
| 209 | if (static_cast<int>(index) < item_max) { |
| 210 | items[index] = ToString(text); |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | void Window_VarList::SetMode(Mode mode) { |
| 215 | this->mode = mode; |
no outgoing calls
no test coverage detected