| 591 | |
| 592 | STD_SETTER_CMD_IMPL_F_S(BoxPlot, SetRugLength, double, rugLength, updateRug) |
| 593 | void BoxPlot::setRugLength(double length) { |
| 594 | Q_D(BoxPlot); |
| 595 | if (length != d->rugLength) |
| 596 | exec(new BoxPlotSetRugLengthCmd(d, length, ki18n("%1: change rug length"))); |
| 597 | } |
| 598 | |
| 599 | STD_SETTER_CMD_IMPL_F_S(BoxPlot, SetRugOffset, double, rugOffset, updateRug) |
| 600 | void BoxPlot::setRugOffset(double offset) { |
no outgoing calls
no test coverage detected