removed fpc 2.1.1 workaround, fpc has now an int64 overload of FloatToStrF

git-svn-id: trunk@8686 -
This commit is contained in:
vincents 2006-02-02 12:42:26 +00:00
parent b8f76e44f5
commit 34ada0cc60

View File

@ -241,7 +241,7 @@ begin
if (not (csDesigning in ComponentState)) and (FAssociate <> nil)
then begin
if Thousands
then FAssociate.Text := FloatToStrF(Single(FPosition), ffNumber, 0, 0)
then FAssociate.Text := FloatToStrF(FPosition, ffNumber, 0, 0)
else FAssociate.Text := IntToStr(FPosition);
end;
end;