| 117 | } |
| 118 | |
| 119 | void writeString(QJsonObject& to, const QString& key, const QString& value) |
| 120 | { |
| 121 | if (!value.isEmpty()) { |
| 122 | to.insert(key, value); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | void writeStringList(QJsonObject& to, const QString& key, const QStringList& values) |
| 127 | { |
no test coverage detected