| 113 | v->zoomTo50(checked); |
| 114 | } |
| 115 | void onMenuZoomTo100(bool checked) |
| 116 | { |
| 117 | const auto v = this->getCurrentActiveView(); |
| 118 | if (v) |
| 119 | v->zoomTo100(checked); |
| 120 | } |
| 121 | void onMenuZoomTo200(bool checked) |
| 122 | { |
| 123 | const auto v = this->getCurrentActiveView(); |
nothing calls this directly
no test coverage detected