| 288 | } |
| 289 | |
| 290 | void BackgroundWidget::firstColorChanged(const QColor& c) { |
| 291 | CONDITIONAL_LOCK_RETURN; |
| 292 | |
| 293 | for (auto* background : m_backgrounds) |
| 294 | background->setFirstColor(c); |
| 295 | } |
| 296 | |
| 297 | void BackgroundWidget::secondColorChanged(const QColor& c) { |
| 298 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected