| 280 | } |
| 281 | |
| 282 | void InfoElementDock::elementLabelBorderShapeChanged() { |
| 283 | CONDITIONAL_LOCK_RETURN; |
| 284 | ui->cbConnectToAnchor->clear(); |
| 285 | ui->cbConnectToAnchor->addItem(i18n("Auto")); |
| 286 | for (int i = 0; i < m_element->gluePointsCount(); i++) |
| 287 | ui->cbConnectToAnchor->addItem(m_element->gluePoint(i).name); |
| 288 | } |
| 289 | |
| 290 | void InfoElementDock::elementPositionChanged(double pos) { |
| 291 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected