| 539 | |
| 540 | STD_SETTER_CMD_IMPL_F_S(BoxPlot, SetNotchesEnabled, bool, notchesEnabled, recalc) |
| 541 | void BoxPlot::setNotchesEnabled(bool notchesEnabled) { |
| 542 | Q_D(BoxPlot); |
| 543 | if (notchesEnabled != d->notchesEnabled) |
| 544 | exec(new BoxPlotSetNotchesEnabledCmd(d, notchesEnabled, ki18n("%1: changed notches"))); |
| 545 | } |
| 546 | |
| 547 | // whiskers |
| 548 | STD_SETTER_CMD_IMPL_F_S(BoxPlot, SetWhiskersType, BoxPlot::WhiskersType, whiskersType, recalc) |
no outgoing calls
no test coverage detected