! * Will be called, when the label changes his position * @param position */
| 520 | * @param position |
| 521 | */ |
| 522 | void InfoElement::labelPositionChanged(TextLabel::PositionWrapper /*position*/) { |
| 523 | if (m_suppressChildPositionChanged) |
| 524 | return; |
| 525 | |
| 526 | Q_D(InfoElement); |
| 527 | d->retransform(); |
| 528 | } |
| 529 | |
| 530 | void InfoElement::labelVisibleChanged(bool /*visible*/) { |
| 531 | Q_D(InfoElement); |
nothing calls this directly
no test coverage detected