| 16 | } |
| 17 | |
| 18 | Label::Ptr Label::Create( const sf::String& text ) { |
| 19 | Ptr label( new Label( text ) ); |
| 20 | label->RequestResize(); |
| 21 | return label; |
| 22 | } |
| 23 | |
| 24 | void Label::SetText( const sf::String& text ) { |
| 25 | m_text = text; |
nothing calls this directly
no test coverage detected