| 145 | } |
| 146 | |
| 147 | void WidgetContainer::clearProperty(std::string_view _key) |
| 148 | { |
| 149 | for (MyGUI::VectorStringPairs::iterator item = mProperty.begin(); item != mProperty.end(); ++item) |
| 150 | { |
| 151 | if ((*item).first == _key) |
| 152 | { |
| 153 | mProperty.erase(item); |
| 154 | break; |
| 155 | } |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | bool WidgetContainer::existProperty(std::string_view _key) const |
| 160 | { |
no test coverage detected