| 102 | } |
| 103 | |
| 104 | void writeString(QJsonObject& to, const QString& key, const QString& value) |
| 105 | { |
| 106 | if (!value.isEmpty()) { |
| 107 | to.insert(key, value); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | void writeStringList(QJsonObject& to, const QString& key, const QStringList& values) |
| 112 | { |
no test coverage detected