summaryrefslogtreecommitdiffstats
path: root/win/C#/Functions/QueryGenerator.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-01-24 17:39:17 +0000
committersr55 <[email protected]>2010-01-24 17:39:17 +0000
commitf6357dbdf13e7f9712d51317d2d7b5f97ff7a6ea (patch)
treeceb746ab1bbe70c044d0f178e14da12983bdf19c /win/C#/Functions/QueryGenerator.cs
parent2cc277f8e32994705a42e8846f17882bb63624b4 (diff)
WinGui:
- Quick patch to allow "," to be used in CSV files when importing into the gui. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3085 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Functions/QueryGenerator.cs')
-rw-r--r--win/C#/Functions/QueryGenerator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/C#/Functions/QueryGenerator.cs b/win/C#/Functions/QueryGenerator.cs
index 37e5b66be..3c15f7352 100644
--- a/win/C#/Functions/QueryGenerator.cs
+++ b/win/C#/Functions/QueryGenerator.cs
@@ -590,7 +590,7 @@ namespace Handbrake.Functions
{
csv += row.Cells[0].Value.ToString();
csv += ",";
- csv += row.Cells[1].Value.ToString();
+ csv += row.Cells[1].Value.ToString().Replace(",","\\,");
csv += Environment.NewLine;
}
StreamWriter file = new StreamWriter(filePathName);