| 1600 | //----------------------------------------------------------------------------- |
| 1601 | |
| 1602 | void GuiEditCtrl::addSelectControlAt( const Point2I& pos ) |
| 1603 | { |
| 1604 | // Run a hit test. |
| 1605 | |
| 1606 | canHitSelectedControls( false ); |
| 1607 | GuiControl* hit = getContentControl()->findHitControl( pos ); |
| 1608 | canHitSelectedControls( true ); |
| 1609 | |
| 1610 | // Add to selection. |
| 1611 | |
| 1612 | if( hit ) |
| 1613 | addSelection( hit ); |
| 1614 | } |
| 1615 | |
| 1616 | //----------------------------------------------------------------------------- |
| 1617 |
nothing calls this directly
no test coverage detected