| 209 | /* ============================ setter methods and undo commands ================= */ |
| 210 | STD_SETTER_CMD_IMPL_F_S(ReferenceRange, SetOrientation, ReferenceRange::Orientation, orientation, updateOrientation) |
| 211 | void ReferenceRange::setOrientation(Orientation orientation) { |
| 212 | Q_D(ReferenceRange); |
| 213 | if (orientation != d->orientation) |
| 214 | exec(new ReferenceRangeSetOrientationCmd(d, orientation, ki18n("%1: set orientation"))); |
| 215 | } |
| 216 | |
| 217 | STD_SETTER_CMD_IMPL_F_S(ReferenceRange, SetPositionLogicalStart, QPointF, positionLogicalStart, retransform) |
| 218 | void ReferenceRange::setPositionLogicalStart(QPointF pos) { |
no outgoing calls
no test coverage detected