Properly escape " in strings when exporting CSV

This commit is contained in:
Wladimir J. van der Laan 2012-05-11 20:17:09 +02:00
parent b34c5f3c0f
commit 875f71d4ef
1 changed files with 3 additions and 2 deletions

View File

@ -27,8 +27,9 @@ void CSVModelWriter::addColumn(const QString &title, int column, int role)
static void writeValue(QTextStream &f, const QString &value) static void writeValue(QTextStream &f, const QString &value)
{ {
// TODO: quoting if " or \n in string QString escaped = value;
f << "\"" << value << "\""; escaped.replace('"', "\"\"");
f << "\"" << escaped << "\"";
} }
static void writeSep(QTextStream &f) static void writeSep(QTextStream &f)