diff data/fileio/CSVStreamWriter.h @ 1679:0d89abd631ac single-point

Re-add the toDelimitedDataString stuff
author Chris Cannam
date Thu, 28 Mar 2019 16:03:36 +0000
parents ea4f3593c39c
children 21c792334c2e
line wrap: on
line diff
--- a/data/fileio/CSVStreamWriter.h	Thu Mar 28 13:37:09 2019 +0000
+++ b/data/fileio/CSVStreamWriter.h	Thu Mar 28 16:03:36 2019 +0000
@@ -68,11 +68,11 @@
 
             const auto start = readPtr;
             const auto end = std::min(start + blockSize, endFrame);
-            const auto data = model.toDelimitedDataStringSubsetWithOptions(
+            const auto data = model.toDelimitedDataString(
                 delimiter,
                 options,
                 start,
-                end
+                end - start
             ).trimmed();
 
             if ( data != "" ) {