| 577 | // margin plots |
| 578 | STD_SETTER_CMD_IMPL_F_S(BoxPlot, SetRugEnabled, bool, rugEnabled, updateRug) |
| 579 | void BoxPlot::setRugEnabled(bool enabled) { |
| 580 | Q_D(BoxPlot); |
| 581 | if (enabled != d->rugEnabled) |
| 582 | exec(new BoxPlotSetRugEnabledCmd(d, enabled, ki18n("%1: change rug enabled"))); |
| 583 | } |
| 584 | |
| 585 | STD_SETTER_CMD_IMPL_F_S(BoxPlot, SetRugWidth, double, rugWidth, updatePixmap) |
| 586 | void BoxPlot::setRugWidth(double width) { |
no outgoing calls
no test coverage detected