fpspreadsheet: Fix missing return value of function fpsfunc.CompareStringWithWildCards

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9391 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz 2024-07-17 15:35:53 +00:00
parent f496fe9a62
commit f972e77759

View File

@ -70,6 +70,7 @@ begin
exit;
end;
end;
Result := true;
end;
type
@ -101,7 +102,6 @@ type
FCompareType: TsCompareType;
FCompareNumber: Double;
FCompareString: String;
FWorkbook: TsWorkbook;
FFormatSettings: TFormatSettings;
protected
function CompareArg(ArgIndex: Integer): Boolean;
@ -233,6 +233,8 @@ var
count: Integer;
sum: Double;
begin
Result := ErrorResult(errArgError);
if not ValidParams(Result) then
exit;