mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-09 18:08:35 +02:00
TAChart: Allow comma as field separator in data files for fitdemo.
git-svn-id: trunk@63612 -
This commit is contained in:
parent
31e038d145
commit
28d7ea6732
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user