| 200 | m_scaleType = sc; |
| 201 | } |
| 202 | void setScaleLogarithmic( bool setToTrue = true ) |
| 203 | { |
| 204 | setScaleType( setToTrue ? Logarithmic : Linear ); |
| 205 | } |
| 206 | bool isScaleLogarithmic() const |
| 207 | { |
| 208 | return m_scaleType == Logarithmic; |
nothing calls this directly
no test coverage detected