| 63 | } |
| 64 | |
| 65 | void NoteDock::textColorChanged(const QColor& color) { |
| 66 | CONDITIONAL_LOCK_RETURN; |
| 67 | |
| 68 | for (auto* note : m_notesList) |
| 69 | note->setTextColor(color); |
| 70 | } |
| 71 | |
| 72 | void NoteDock::textFontChanged(const QFont& font) { |
| 73 | CONDITIONAL_LOCK_RETURN; |
nothing calls this directly
no test coverage detected