* Increases the zoom level on the globe. */
| 690 | * Increases the zoom level on the globe. |
| 691 | */ |
| 692 | void Globe::zoomIn() |
| 693 | { |
| 694 | if (_zoom < _zoomRadius.size() - 1) |
| 695 | { |
| 696 | setZoom(_zoom + 1); |
| 697 | } |
| 698 | } |
| 699 | |
| 700 | /** |
| 701 | * Decreases the zoom level on the globe. |
no outgoing calls
no test coverage detected