| 47 | } |
| 48 | |
| 49 | QJsonValue StyleSettings::value(const QString &theme, const QString &key) |
| 50 | { |
| 51 | if (!themeMap.contains(theme)) |
| 52 | return {}; |
| 53 | |
| 54 | return themeMap[theme].value(key); |
| 55 | } |
| 56 | |
| 57 | void StyleSettings::parseThemeInfo(const QJsonObject &obj) |
| 58 | { |
no test coverage detected