! * \brief RetransformCallCounter::aspectAdded * Connect RetransformCallCounter to the aspects signals to count the retransform calls * \param aspect */
| 2181 | * \param aspect |
| 2182 | */ |
| 2183 | void RetransformCallCounter::aspectAdded(const AbstractAspect* aspect) { |
| 2184 | connect(aspect, &AbstractAspect::retransformCalledSignal, this, &RetransformCallCounter::aspectRetransformed); |
| 2185 | auto* plot = dynamic_cast<const CartesianPlot*>(aspect); |
| 2186 | if (plot) |
| 2187 | connect(plot, &CartesianPlot::scaleRetransformed, this, &RetransformCallCounter::retransformScaleCalled); |
| 2188 | } |
| 2189 | |
| 2190 | void RetransformTest::removeReaddxColum() { |
| 2191 | Project project; |
no outgoing calls
no test coverage detected