| 200 | } |
| 201 | |
| 202 | void ComboBox::HandleMouseEnter( int /*x*/, int /*y*/ ) { |
| 203 | if( GetState() == State::NORMAL ) { |
| 204 | SetState( State::PRELIGHT ); |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | void ComboBox::HandleMouseLeave( int /*x*/, int /*y*/ ) { |
| 209 | if( GetState() == State::PRELIGHT ) { |
nothing calls this directly
no outgoing calls
no test coverage detected