* Decreases the zoom level on the globe. */
| 701 | * Decreases the zoom level on the globe. |
| 702 | */ |
| 703 | void Globe::zoomOut() |
| 704 | { |
| 705 | if (_zoom > 0) |
| 706 | { |
| 707 | setZoom(_zoom - 1); |
| 708 | } |
| 709 | } |
| 710 | |
| 711 | /** |
| 712 | * Zooms the globe out as far as possible. |
no outgoing calls
no test coverage detected