TAChart: Allow comma as field separator in data files for fitdemo.

git-svn-id: trunk@63612 -
This commit is contained in:
wp 2020-07-21 09:23:46 +00:00
parent 31e038d145
commit 28d7ea6732

View File

@ -681,6 +681,9 @@ begin
else
if pos(#9, L[0]) > 0 then
LC.Delimiter := #9
else
if pos(',', L[0]) > 0 then
LC.Delimiter := ','
else begin
ShowMessage('Unknown or no delimiter.');
exit;