| 246 | } |
| 247 | |
| 248 | void PanelItems::addPropertyValue( |
| 249 | MyGUI::Widget* _widget, |
| 250 | std::string_view _propertyName, |
| 251 | std::string_view _propertyValue) |
| 252 | { |
| 253 | WidgetContainer* widgetContainer = EditorWidgets::getInstance().find(_widget); |
| 254 | widgetContainer->setProperty(_propertyName, _propertyValue, false); |
| 255 | } |
| 256 | |
| 257 | } |
nothing calls this directly
no test coverage detected