SLOTs for changes triggered in NoteDock
| 56 | //********** SLOTs for changes triggered in NoteDock ********** |
| 57 | //************************************************************* |
| 58 | void NoteDock::backgroundColorChanged(const QColor& color) { |
| 59 | CONDITIONAL_LOCK_RETURN; |
| 60 | |
| 61 | for (auto* note : m_notesList) |
| 62 | note->setBackgroundColor(color); |
| 63 | } |
| 64 | |
| 65 | void NoteDock::textColorChanged(const QColor& color) { |
| 66 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected