From d9a5f28d3c574dba209fc9d9e2d1d77c32189b2c Mon Sep 17 00:00:00 2001 From: adityapk Date: Mon, 3 Dec 2018 10:03:32 -0800 Subject: [PATCH] CSV fixes --- src/txtablemodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/txtablemodel.cpp b/src/txtablemodel.cpp index 297301e..a294f66 100644 --- a/src/txtablemodel.cpp +++ b/src/txtablemodel.cpp @@ -51,7 +51,7 @@ bool TxTableModel::exportToCsv(QString fileName) const { // Write headers for (int i = 0; i < headers.length(); i++) { - out << "\"" << headers[i] << "\""; + out << "\"" << headers[i] << "\","; } out << "\"Memo\""; out << endl;