| 157 | } |
| 158 | |
| 159 | void PlotAxis::setMax(double newMax) |
| 160 | { |
| 161 | if(qFuzzyCompare(m_max, newMax)) |
| 162 | return; |
| 163 | m_max = newMax; |
| 164 | emit maxChanged(newMax); |
| 165 | } |
| 166 | |
| 167 | BasicScaleDraw *PlotAxis::scaleDraw() const { return m_scaleDraw; } |
| 168 |
no outgoing calls
no test coverage detected