mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-26 10:08:42 +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
|
else
|
||||||
if pos(#9, L[0]) > 0 then
|
if pos(#9, L[0]) > 0 then
|
||||||
LC.Delimiter := #9
|
LC.Delimiter := #9
|
||||||
|
else
|
||||||
|
if pos(',', L[0]) > 0 then
|
||||||
|
LC.Delimiter := ','
|
||||||
else begin
|
else begin
|
||||||
ShowMessage('Unknown or no delimiter.');
|
ShowMessage('Unknown or no delimiter.');
|
||||||
exit;
|
exit;
|
||||||
|
Loading…
Reference in New Issue
Block a user