fpspreadsheet: Fix yet another bug in previous commit. Issue #39073

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9383 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz 2024-07-12 15:35:32 +00:00
parent 3dfb71a70e
commit 01fbf93a73

View File

@ -2830,7 +2830,7 @@ begin
cctDateTime: numSearchValue := cell^.DateTimeValue;
cctBool: numSearchValue := ord(cell^.BoolValue);
cctEmpty: begin Result := ErrorResult(errWrongType); exit; end;
cctError: begin Result := ErrorResult(errWrongType);
cctError: begin Result := ErrorResult(errWrongType); exit; end;
end;
end;
else