| 1126 | } |
| 1127 | |
| 1128 | void Widget::setSkinProperty(ResourceSkin* _info) |
| 1129 | { |
| 1130 | const MapString& properties = _info->getProperties(); |
| 1131 | for (const auto& property : properties) |
| 1132 | setProperty(property.first, property.second); |
| 1133 | } |
| 1134 | |
| 1135 | void Widget::setProperty(std::string_view _key, std::string_view _value) |
| 1136 | { |
nothing calls this directly
no test coverage detected