diff data/fileio/CSVFileWriter.cpp @ 1833:21c792334c2e sensible-delimited-data-strings

Rewrite all the DelimitedDataString stuff so as to return vectors of individual cell strings rather than having the classes add the delimiters themselves. Rename accordingly to names based on StringExport. Take advantage of this in the CSV writer code so as to properly quote cells that contain delimiter characters.
author Chris Cannam
date Fri, 03 Apr 2020 17:11:05 +0100
parents fd5a87f3c5b4
children
line wrap: on
line diff
--- a/data/fileio/CSVFileWriter.cpp	Fri Apr 03 12:12:02 2020 +0100
+++ b/data/fileio/CSVFileWriter.cpp	Fri Apr 03 17:11:05 2020 +0100
@@ -86,7 +86,9 @@
         QTextStream out(&file);
 
         if (m_options & DataExportIncludeHeader) {
-            out << m_model->getDelimitedDataHeaderLine(m_delimiter, m_options)
+            out << StringBits::joinDelimited
+                (m_model->getStringExportHeaders(m_options),
+                 m_delimiter)
                 << endl;
         }