mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 13:29:26 +01:00
+ Streaming of subcomponents added by Marc Weustink
This commit is contained in:
parent
b19f7b3dc8
commit
783376530d
@ -548,6 +548,14 @@ begin
|
||||
SafeCallException:=0;
|
||||
end;
|
||||
|
||||
procedure TComponent.SetSubComponent(ASubComponent: Boolean);
|
||||
begin
|
||||
if ASubComponent then
|
||||
Include(FComponentStyle, csSubComponent)
|
||||
else
|
||||
Exclude(FComponentStyle, csSubComponent);
|
||||
end;
|
||||
|
||||
|
||||
function TComponent.UpdateAction(Action: TBasicAction): Boolean;
|
||||
begin
|
||||
@ -583,7 +591,10 @@ end;
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.8 2005-02-14 17:13:31 peter
|
||||
Revision 1.9 2005-04-15 07:21:09 michael
|
||||
+ Streaming of subcomponents added by Marc Weustink
|
||||
|
||||
Revision 1.8 2005/02/14 17:13:31 peter
|
||||
* truncate log
|
||||
|
||||
Revision 1.7 2005/02/02 19:56:11 florian
|
||||
|
||||
Loading…
Reference in New Issue
Block a user