| 423 | //----------------------------------------------------------------------------- |
| 424 | |
| 425 | bool GuiInspector::collideDivider( const Point2I &localPnt ) |
| 426 | { |
| 427 | RectI divisorRect( getWidth() - getWidth() * mDividerPos - mDividerMargin, 0, mDividerMargin * 2, getHeight() ); |
| 428 | |
| 429 | if ( divisorRect.pointInRect( localPnt ) ) |
| 430 | return true; |
| 431 | |
| 432 | return false; |
| 433 | } |
| 434 | |
| 435 | //----------------------------------------------------------------------------- |
| 436 |
nothing calls this directly
no test coverage detected