| 109 | } |
| 110 | |
| 111 | void writeString(QJsonObject &to, const QString &key, const QString &value) |
| 112 | { |
| 113 | if (!value.isEmpty()) |
| 114 | { |
| 115 | to.insert(key, value); |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | void writeStringList(QJsonObject &to, const QString &key, const QStringList &values) |
| 120 | { |
no test coverage detected