| 317 | } |
| 318 | |
| 319 | void CartesianPlotLegendDock::labelColorChanged(const QColor& color) { |
| 320 | CONDITIONAL_LOCK_RETURN; |
| 321 | |
| 322 | for (auto* legend : m_legendList) |
| 323 | legend->setLabelColor(color); |
| 324 | } |
| 325 | |
| 326 | void CartesianPlotLegendDock::labelOrderChanged(const int index) { |
| 327 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected