| 1287 | } |
| 1288 | |
| 1289 | std::optional<QColor> ColorSettings::previousSeparatorColor() const |
| 1290 | { |
| 1291 | const auto c = getOptional<QColor>(m_Settings, "General", "previousSeparatorColor"); |
| 1292 | if (c && c->isValid()) { |
| 1293 | return c; |
| 1294 | } |
| 1295 | |
| 1296 | return {}; |
| 1297 | } |
| 1298 | |
| 1299 | void ColorSettings::setPreviousSeparatorColor(const QColor& c) const |
| 1300 | { |
no test coverage detected