fpspreadsheet: Fix boolean formula failures in unit tests (probably introduced by r6570).

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6643 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-09-11 17:21:40 +00:00
parent 5da4eef21a
commit 7ce43cda63

View File

@ -4680,7 +4680,7 @@ begin
case AValue.ResultType of
rtString :
Result := (AValue.ResString = '');
rtInteger, rtFloat, rtError:
rtInteger, rtFloat, rtBoolean, rtError:
Result := false;
rtEmpty:
Result := true;