| 61 | } |
| 62 | |
| 63 | void TomlWriter::writeString(const QString &key, const QString &value) |
| 64 | { |
| 65 | writeKeyPrefix(key); |
| 66 | m_out += QLatin1Char('"'); |
| 67 | m_out += escapeBasic(value); |
| 68 | m_out += QLatin1String("\"\n"); |
| 69 | } |
| 70 | |
| 71 | void TomlWriter::writeBool(const QString &key, bool value) |
| 72 | { |
no test coverage detected