| 88 | } |
| 89 | |
| 90 | void writeString(QJsonObject &to, const QString &key, const QString &value) |
| 91 | { |
| 92 | if (!value.isEmpty()) |
| 93 | { |
| 94 | to.insert(key, value); |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | void writeStringList(QJsonObject &to, const QString &key, const QStringList &values) |
| 99 | { |
no test coverage detected