| 464 | } |
| 465 | |
| 466 | bool Object::select( bool on ) |
| 467 | { |
| 468 | if ( selected_ == on ) |
| 469 | return false; |
| 470 | |
| 471 | if ( ancillary_ && on ) |
| 472 | return false; |
| 473 | |
| 474 | needRedraw_ = true; |
| 475 | selected_ = on; |
| 476 | return true; |
| 477 | } |
| 478 | |
| 479 | void Object::setAncillary( bool ancillary ) |
| 480 | { |
no outgoing calls
no test coverage detected