| 267 | } |
| 268 | |
| 269 | void ColorTable::commitColors() |
| 270 | { |
| 271 | forEachColorItem(this, [](auto* item) { |
| 272 | item->commit(); |
| 273 | }); |
| 274 | } |
| 275 | |
| 276 | void ColorTable::addColor(const QString& text, const QColor& defaultColor, |
| 277 | std::function<QColor()> get, |
no test coverage detected