| 221 | |
| 222 | |
| 223 | void |
| 224 | FlowView:: |
| 225 | scaleUp() |
| 226 | { |
| 227 | double const step = 1.1; |
| 228 | double const factor = std::pow(step, 1.0); |
| 229 | |
| 230 | QTransform t = transform(); |
| 231 | |
| 232 | if (t.m11() > 2.0) |
| 233 | return; |
| 234 | |
| 235 | scale(factor, factor); |
| 236 | } |
| 237 | |
| 238 | |
| 239 | void |
nothing calls this directly
no outgoing calls
no test coverage detected