| 518 | |
| 519 | STD_SETTER_CMD_IMPL_F_S(BoxPlot, SetOrientation, BoxPlot::Orientation, orientation, recalc) |
| 520 | void BoxPlot::setOrientation(BoxPlot::Orientation orientation) { |
| 521 | Q_D(BoxPlot); |
| 522 | if (orientation != d->orientation) |
| 523 | exec(new BoxPlotSetOrientationCmd(d, orientation, ki18n("%1: set orientation"))); |
| 524 | } |
| 525 | |
| 526 | STD_SETTER_CMD_IMPL_F_S(BoxPlot, SetVariableWidth, bool, variableWidth, recalc) |
| 527 | void BoxPlot::setVariableWidth(bool variableWidth) { |
no outgoing calls
no test coverage detected