| 54 | } |
| 55 | |
| 56 | void RadioButton::HandleMouseClick( sf::Mouse::Button button, int x, int y ) { |
| 57 | if( !IsActive() && ( button == sf::Mouse::Button::Left ) ) { |
| 58 | SetActive( true ); |
| 59 | } |
| 60 | |
| 61 | Button::HandleMouseClick( button, x, y ); |
| 62 | } |
| 63 | |
| 64 | const std::string& RadioButton::GetName() const { |
| 65 | static const std::string name( "RadioButton" ); |
nothing calls this directly
no outgoing calls
no test coverage detected