mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-21 17:10:17 +02:00
* TBasicActionLink.Update must always return value. Fix issue #41070
This commit is contained in:
parent
81129445c3
commit
a8345da53f
@ -82,7 +82,9 @@ end;
|
|||||||
function TBasicActionLink.Update: Boolean;
|
function TBasicActionLink.Update: Boolean;
|
||||||
begin
|
begin
|
||||||
if Assigned(Faction) then
|
if Assigned(Faction) then
|
||||||
Result := FAction.Update;
|
Result := FAction.Update
|
||||||
|
else
|
||||||
|
Result:=False;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{****************************************************************************}
|
{****************************************************************************}
|
||||||
|
Loading…
Reference in New Issue
Block a user