* TBasicActionLink.Update must always return value. Fix issue #41070

This commit is contained in:
Michaël Van Canneyt 2024-12-20 12:28:15 +01:00
parent 81129445c3
commit a8345da53f

View File

@ -82,7 +82,9 @@ end;
function TBasicActionLink.Update: Boolean;
begin
if Assigned(Faction) then
Result := FAction.Update;
Result := FAction.Update
else
Result:=False;
end;
{****************************************************************************}