| 420 | |
| 421 | STD_SETTER_CMD_IMPL_F_S(DatapickerImage, SetPointVisibility, bool, pointVisibility, retransform) |
| 422 | void DatapickerImage::setPointVisibility(const bool on) { |
| 423 | Q_D(DatapickerImage); |
| 424 | if (on != d->pointVisibility) |
| 425 | exec(new DatapickerImageSetPointVisibilityCmd(d, on, on ? ki18n("%1: set visible") : ki18n("%1: set invisible"))); |
| 426 | } |
| 427 | |
| 428 | void DatapickerImage::setPrinting(bool on) const { |
| 429 | auto points = parentAspect()->children<DatapickerPoint>(ChildIndexFlag::Recursive | ChildIndexFlag::IncludeHidden); |
no outgoing calls
no test coverage detected