| 206 | } |
| 207 | |
| 208 | void ComboBox::HandleMouseLeave( int /*x*/, int /*y*/ ) { |
| 209 | if( GetState() == State::PRELIGHT ) { |
| 210 | SetState( State::NORMAL ); |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | void ComboBox::HandleMouseMoveEvent( int x, int y ) { |
| 215 | if( ( x == std::numeric_limits<int>::min() ) || ( y == std::numeric_limits<int>::min() ) ) { |
nothing calls this directly
no outgoing calls
no test coverage detected