| 29 | explicit ConfigValueMap(const KConfigGroup& config) : m_config(config) {} |
| 30 | |
| 31 | void writeEntry(const QString& s, const QFont& v) override |
| 32 | { |
| 33 | m_config.writeEntry(s, v); |
| 34 | } |
| 35 | void writeEntry(const QString& s, const QColor& v) override |
| 36 | { |
| 37 | m_config.writeEntry(s, v); |
nothing calls this directly
no outgoing calls
no test coverage detected