| 119 | v->zoomTo100(checked); |
| 120 | } |
| 121 | void onMenuZoomTo200(bool checked) |
| 122 | { |
| 123 | const auto v = this->getCurrentActiveView(); |
| 124 | if (v) |
| 125 | v->zoomTo200(checked); |
| 126 | } |
| 127 | void onMenuZoomToCustom(bool checked) |
| 128 | { |
| 129 | const auto v = this->getCurrentActiveView(); |
nothing calls this directly
no test coverage detected