| 95 | v->zoomToFit(checked); |
| 96 | } |
| 97 | void onMenuZoomIn(bool checked) |
| 98 | { |
| 99 | const auto v = this->getCurrentActiveView(); |
| 100 | if (v) |
| 101 | v->zoomIn(checked); |
| 102 | } |
| 103 | void onMenuZoomOut(bool checked) |
| 104 | { |
| 105 | const auto v = this->getCurrentActiveView(); |
nothing calls this directly
no test coverage detected