| 107 | v->zoomOut(checked); |
| 108 | } |
| 109 | void onMenuZoomTo50(bool checked) |
| 110 | { |
| 111 | const auto v = this->getCurrentActiveView(); |
| 112 | if (v) |
| 113 | v->zoomTo50(checked); |
| 114 | } |
| 115 | void onMenuZoomTo100(bool checked) |
| 116 | { |
| 117 | const auto v = this->getCurrentActiveView(); |
nothing calls this directly
no test coverage detected