* Blits the base view and selector. * @param surface Pointer to surface to blit onto. */
| 494 | * @param surface Pointer to surface to blit onto. |
| 495 | */ |
| 496 | void BaseView::blit(Surface *surface) |
| 497 | { |
| 498 | Surface::blit(surface); |
| 499 | if (_selector != 0) |
| 500 | { |
| 501 | _selector->blit(surface); |
| 502 | } |
| 503 | } |
| 504 | |
| 505 | /** |
| 506 | * Selects the facility the mouse is over. |
no outgoing calls
no test coverage detected