| 1197 | |
| 1198 | STD_SETTER_CMD_IMPL_F_S(CartesianPlot, SetRangeFirstValues, int, rangeFirstValues, rangeChanged) |
| 1199 | void CartesianPlot::setRangeFirstValues(int values) { |
| 1200 | Q_D(CartesianPlot); |
| 1201 | if (values != d->rangeFirstValues) |
| 1202 | exec(new CartesianPlotSetRangeFirstValuesCmd(d, values, ki18n("%1: set range"))); |
| 1203 | } |
| 1204 | |
| 1205 | // x/y ranges |
| 1206 | class CartesianPlotSetRangeFormatIndexCmd : public QUndoCommand { |