| 37 | } |
| 38 | |
| 39 | QJsonObject normalizeThemeJson(const QJsonObject &json) |
| 40 | { |
| 41 | QJsonObject normalized; |
| 42 | for (auto it = json.constBegin(); it != json.constEnd(); ++it) |
| 43 | normalized.insert(it.key(), normalizeThemeJsonValue(it.value())); |
| 44 | return normalized; |
| 45 | } |
| 46 | |
| 47 | QByteArray serializeNormalizedThemeJson(const QJsonObject &json, QJsonDocument::JsonFormat format) |
| 48 | { |
no test coverage detected