| 26 | } |
| 27 | |
| 28 | std::unique_ptr<RenderQueue> Window::InvalidateImpl() const { |
| 29 | if( GetChild() ) { |
| 30 | GetChild()->SetAllocation( GetClientRect() ); |
| 31 | } |
| 32 | |
| 33 | return Context::Get().GetEngine().CreateWindowDrawable( std::dynamic_pointer_cast<const Window>( shared_from_this() ) ); |
| 34 | } |
| 35 | |
| 36 | void Window::SetTitle( const sf::String& title ) { |
| 37 | m_title = title; |
nothing calls this directly
no test coverage detected