1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
{%MainUnit ../actnlist.pas}
{
*****************************************************************************
This file is part of the Lazarus Component Library (LCL)
See the file COPYING.modifiedLGPL.txt, included in this distribution,
for details about the license.
*****************************************************************************
}
constructor TAction.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
DisableIfNoHandler := True;
end;
// included by actnlist.pas
|