mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 07:16:16 +02:00
lcl/controls.pp
git-svn-id: trunk@957 -
This commit is contained in:
parent
bfeaa2d226
commit
7f395092e7
@ -1652,6 +1652,19 @@ begin
|
||||
Result := Parent.GetDeviceContext(WindowHandle);
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
Method: TControl.HasParent
|
||||
Params:
|
||||
Returns: True - the item has a parent responsible for streaming
|
||||
|
||||
This function will be called during streaming to decide if a component has
|
||||
to be streamed by it's owner or parent.
|
||||
------------------------------------------------------------------------------}
|
||||
function TControl.HasParent : Boolean;
|
||||
begin
|
||||
Result := (FParent <> nil);
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
Method: TControl.SendToBack
|
||||
Params: None
|
||||
@ -1739,6 +1752,9 @@ end;
|
||||
|
||||
{ =============================================================================
|
||||
$Log$
|
||||
Revision 1.54 2002/05/30 21:17:27 lazarus
|
||||
lcl/controls.pp
|
||||
|
||||
Revision 1.53 2002/05/29 21:44:38 lazarus
|
||||
MG: improved TCommon/File/OpenDialog, fixed TListView scrolling and broder
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user