| 82 | } |
| 83 | |
| 84 | void PropertyInt2ListControl::setValue(std::string_view _value) |
| 85 | { |
| 86 | mList->removeAllItems(); |
| 87 | std::vector<std::string> values = MyGUI::utility::split(_value, "|"); |
| 88 | for (const auto& value : values) |
| 89 | mList->addItem(value); |
| 90 | } |
| 91 | |
| 92 | void PropertyInt2ListControl::notifyClickAdd(MyGUI::Widget* _sender) |
| 93 | { |
no test coverage detected