| 36 | } |
| 37 | |
| 38 | void Button::ClearImage() { |
| 39 | auto child = GetChild(); |
| 40 | |
| 41 | if( child ) { |
| 42 | Remove( child ); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | void Button::HandleMouseEnter( int /*x*/, int /*y*/ ) { |
| 47 | if( GetState() == State::NORMAL ) { |
nothing calls this directly
no outgoing calls
no test coverage detected