| 574 | |
| 575 | STD_SETTER_CMD_IMPL_F_S(XYCurve, SetLineSkipGaps, bool, lineSkipGaps, updateLines) |
| 576 | void XYCurve::setLineSkipGaps(bool skip) { |
| 577 | Q_D(XYCurve); |
| 578 | if (skip != d->lineSkipGaps) |
| 579 | exec(new XYCurveSetLineSkipGapsCmd(d, skip, ki18n("%1: set skip line gaps"))); |
| 580 | } |
| 581 | |
| 582 | STD_SETTER_CMD_IMPL_F_S(XYCurve, SetLineIncreasingXOnly, bool, lineIncreasingXOnly, updateLines) |
| 583 | void XYCurve::setLineIncreasingXOnly(bool incr) { |
no outgoing calls