mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-23 09:23:06 +02:00
18 lines
394 B
PHP
18 lines
394 B
PHP
// included by stdctrls.pp
|
|
|
|
{------------------------------------------------------------------------------}
|
|
|
|
constructor TToggleBox.Create(AOwner : TComponent);
|
|
begin
|
|
if assigned(AOwner) then
|
|
begin
|
|
inherited Create(AOwner);
|
|
fCompStyle := csToggleBox;
|
|
end;
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------}
|
|
|
|
// included by stdctrls.pp
|
|
|