* VarUtils, fixed a wrong identifier

git-svn-id: trunk@16524 -
This commit is contained in:
sergei 2010-12-08 23:42:39 +00:00
parent 3a089cea10
commit ddfb032913

View File

@ -769,7 +769,7 @@ begin
Result := vDouble;
end;
varDate : begin
if (varDate > MaxCurrency) or (varDate < MinCurrency) then
if (vDate > MaxCurrency) or (vDate < MinCurrency) then
VariantTypeMismatch(vType, varCurrency);
Result := vDate;
end;