| 247 | } |
| 248 | |
| 249 | void Entry::HandleMouseEnter( int /*x*/, int /*y*/ ) { |
| 250 | if( !HasFocus() ) { |
| 251 | SetState( State::PRELIGHT ); |
| 252 | } |
| 253 | } |
| 254 | |
| 255 | void Entry::HandleMouseLeave( int /*x*/, int /*y*/ ) { |
| 256 | if( !HasFocus() ) { |
nothing calls this directly
no outgoing calls
no test coverage detected