[chronojump] Fixed encoder analyze curves in names with comma



commit f8a4be81f882f6907ecf86778066933e752ae730
Author: Xavier de Blas <xaviblas gmail com>
Date:   Fri Apr 11 14:08:05 2014 +0200

    Fixed encoder analyze curves in names with comma

 src/gui/encoder.cs |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/src/gui/encoder.cs b/src/gui/encoder.cs
index 5e7140f..63b5ee0 100644
--- a/src/gui/encoder.cs
+++ b/src/gui/encoder.cs
@@ -2332,7 +2332,9 @@ Log.WriteLine(str);
                                        fullURL = eSQL.GetFullURL(true);        //convertPathToR
                                }
 
-                               writer.WriteLine(eSQL.status + "," + seriesName + "," + ex.name + "," +
+                               writer.WriteLine(eSQL.status + "," + 
+                                               Util.ChangeChars(seriesName,","," ") + "," + //person name 
cannot have commas
+                                               ex.name + "," +
                                                Util.ConvertToPoint(iteratingMassBody).ToString() + "," + 
                                                Util.ConvertToPoint(Convert.ToDouble(eSQL.extraWeight)) + "," 
+
                                                eSQL.GetDate(true) + "," + 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]