DecimalSeprator is deprecated, use DefaultFormatSettings.DecimalSeparator

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2511 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
inoussa 2012-09-14 11:52:34 +00:00
parent 3817a85022
commit 2ed8374ace

View File

@ -125,7 +125,7 @@ begin
Result := Value;
for i := 1 to length(Result) do begin
if ( Result[i] = '.' ) then
Result[i] := DecimalSeparator;
Result[i] := DefaultFormatSettings.DecimalSeparator;
end;
end;