| 391 | |
| 392 | STD_SETTER_CMD_IMPL_S(DatapickerImage, SetRotationAngle, float, rotationAngle) |
| 393 | void DatapickerImage::setRotationAngle(float angle) { |
| 394 | Q_D(DatapickerImage); |
| 395 | if (angle != d->rotationAngle) |
| 396 | exec(new DatapickerImageSetRotationAngleCmd(d, angle, ki18n("%1: set rotation angle"))); |
| 397 | } |
| 398 | |
| 399 | STD_SETTER_CMD_IMPL_S(DatapickerImage, SetAxisPoints, DatapickerImage::ReferencePoints, axisPoints) |
| 400 | void DatapickerImage::setAxisPoints(const DatapickerImage::ReferencePoints& points) { |
no outgoing calls
no test coverage detected