fcl-db: mysql: fix return type of function InternalStrToCurrency. Revealed by test: TestSupportBCDFields

git-svn-id: trunk@30155 -
This commit is contained in:
lacak 2015-03-10 06:42:18 +00:00
parent 94a2fbb20d
commit 1e536926e1

View File

@ -214,8 +214,8 @@ implementation
uses
dbconst,
strutils,
dateutils,
StrUtils,
DateUtils,
FmtBCD;
const
@ -856,7 +856,7 @@ begin
Result := StrToFloat(Tmp);
end;
function InternalStrToCurrency(const S: string): Extended;
function InternalStrToCurrency(const S: string): Currency;
var
I: Integer;