| 101 | v->zoomIn(checked); |
| 102 | } |
| 103 | void onMenuZoomOut(bool checked) |
| 104 | { |
| 105 | const auto v = this->getCurrentActiveView(); |
| 106 | if (v) |
| 107 | v->zoomOut(checked); |
| 108 | } |
| 109 | void onMenuZoomTo50(bool checked) |
| 110 | { |
| 111 | const auto v = this->getCurrentActiveView(); |
nothing calls this directly
no test coverage detected