comparison data/fileio/CSVFileWriter.cpp @ 1438:09c2ba31a711 streaming-csv-writer

Formatting and naming changes more in line with SV conventions.
author Lucas Thompson <dev@lucas.im>
date Tue, 17 Apr 2018 10:03:49 +0100
parents d61d6c33f14d
children 3c3eedc2fad8
comparison
equal deleted inserted replaced
1437:de385fed1197 1438:09c2ba31a711
86 QTextStream out(&file); 86 QTextStream out(&file);
87 87
88 bool completed = false; 88 bool completed = false;
89 89
90 for (const auto& bounds : selection->getSelections()) { 90 for (const auto& bounds : selection->getSelections()) {
91 completed = CSV::writeToStreamInChunks( 91 completed = CSVStreamWriter::writeInChunks(
92 out, 92 out,
93 *m_model, 93 *m_model,
94 bounds, 94 bounds,
95 m_reporter, 95 m_reporter,
96 m_delimiter, 96 m_delimiter,