| 117 | } |
| 118 | |
| 119 | void Container::HandleGlobalVisibilityChange() { |
| 120 | Widget::HandleGlobalVisibilityChange(); |
| 121 | |
| 122 | for( const auto& child : m_children ) { |
| 123 | child->HandleGlobalVisibilityChange(); |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | void Container::HandleUpdate( float seconds ) { |
| 128 | Widget::HandleUpdate( seconds ); |
nothing calls this directly
no outgoing calls
no test coverage detected