| 77 | } |
| 78 | |
| 79 | std::string_view WidgetContainer::getUserData(std::string_view _key) |
| 80 | { |
| 81 | for (const auto& item : mUserString) |
| 82 | { |
| 83 | if (item.first == _key) |
| 84 | return item.second; |
| 85 | } |
| 86 | return {}; |
| 87 | } |
| 88 | |
| 89 | void WidgetContainer::clearUserData(std::string_view _key) |
| 90 | { |
no outgoing calls
no test coverage detected