RxFPC:fix filter null values in RxDBGrid

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5137 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
alexs75
2016-09-09 09:00:56 +00:00
parent 6c1264d156
commit 739b507e7b

View File

@ -5167,7 +5167,11 @@ begin
Accept:=true
else
if Filter.IsNull then
Accept:=Field.IsNull
begin
Accept:=Field.IsNull;
if not Accept then
Break;
end
else
if (Filter.Value <> '') then
begin