You've already forked lazarus-ccr
RxDBGrid - fix error on calc footer with null fields - tnx ronin
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2403 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -3928,7 +3928,7 @@ begin
|
|||||||
begin
|
begin
|
||||||
if F.DataType in [ftDate, ftTime, ftDateTime, ftTimeStamp] then
|
if F.DataType in [ftDate, ftTime, ftDateTime, ftTimeStamp] then
|
||||||
begin
|
begin
|
||||||
if FValueType in [fvtMax, fvtMin] then
|
if (FValueType in [fvtMax, fvtMin]) and not (F.IsNull) then
|
||||||
begin
|
begin
|
||||||
if not (F.IsNull) and (FTestValue = F.AsDateTime) then
|
if not (F.IsNull) and (FTestValue = F.AsDateTime) then
|
||||||
Result := False
|
Result := False
|
||||||
|
Reference in New Issue
Block a user