| 235 | } |
| 236 | |
| 237 | BaseWidget* SubDisplayPanel::GetSubPanel(const SubDisplayType& type) { |
| 238 | if (sub_panels_.count(type) > 0) { |
| 239 | return sub_panels_[type]; |
| 240 | } |
| 241 | return nullptr; |
| 242 | } |
| 243 | |
| 244 | void SubDisplayPanel::HideAllSubPanels() { |
| 245 | for (const auto& [k, v] : sub_panels_) { |
nothing calls this directly
no outgoing calls
no test coverage detected