| 442 | |
| 443 | STD_SETTER_CMD_IMPL_F_S(Histogram, SetBinWidth, double, binWidth, recalc) |
| 444 | void Histogram::setBinWidth(double width) { |
| 445 | Q_D(Histogram); |
| 446 | if (width != d->binWidth) |
| 447 | exec(new HistogramSetBinWidthCmd(d, width, ki18n("%1: set bin width"))); |
| 448 | } |
| 449 | |
| 450 | class HistogramSetAutoBinRangesCmd : public QUndoCommand { |
| 451 | public: |
no outgoing calls
no test coverage detected