fpspreadsheet: Fix typo in evaluation of formula ISBLANK.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6537 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-06-26 17:07:06 +00:00
parent 78e381e14d
commit fa0cc2f50e

View File

@ -1777,7 +1777,7 @@ var
begin
case Args[0].ResultType of
rtEmpty : Result := BooleanResult(true);
rtString: Result := BooleanResult(Result.ResString = '');
rtString: Result := BooleanResult(Args[0].ResString = '');
rtCell : begin
cell := ArgToCell(Args[0]);
if (cell = nil) or (cell^.ContentType = cctEmpty) then