| 89 | v->resetView(checked); |
| 90 | } |
| 91 | void onMenuZoomToFit(bool checked) |
| 92 | { |
| 93 | const auto v = this->getCurrentActiveView(); |
| 94 | if (v) |
| 95 | v->zoomToFit(checked); |
| 96 | } |
| 97 | void onMenuZoomIn(bool checked) |
| 98 | { |
| 99 | const auto v = this->getCurrentActiveView(); |
nothing calls this directly
no test coverage detected