| 77 | } |
| 78 | |
| 79 | void PropertyFieldComboBox::setValue(std::string_view _value) |
| 80 | { |
| 81 | if (_value.empty()) |
| 82 | { |
| 83 | mField->setCaption(replaceTags("ColourDefault") + DEFAULT_STRING); |
| 84 | } |
| 85 | else |
| 86 | { |
| 87 | mField->setOnlyText(MyGUI::UString(_value)); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | void PropertyFieldComboBox::setName(std::string_view _value) |
| 92 | { |
nothing calls this directly
no test coverage detected