| 46 | } |
| 47 | |
| 48 | void Container::Refresh() { |
| 49 | for( const auto& child : m_children ) { |
| 50 | child->Refresh(); |
| 51 | } |
| 52 | |
| 53 | Widget::Refresh(); |
| 54 | } |
| 55 | |
| 56 | void Container::HandleEvent( const sf::Event& event ) { |
| 57 | // Ignore event when widget is not visible. |
nothing calls this directly
no outgoing calls
no test coverage detected