lazarus/lcl/include/boundlabel.inc
mattias 3eb5a76a85 started TLabeledEdit
git-svn-id: trunk@2525 -
2002-08-17 23:41:27 +00:00

35 lines
1.4 KiB
PHP

// included by extctrls.pp
{******************************************************************************
TBoundLabel
******************************************************************************
*****************************************************************************
* *
* This file is part of the Lazarus Component Library (LCL) *
* *
* See the file COPYING.LCL, included in this distribution, *
* for details about the copyright. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
*****************************************************************************
}
{ TBoundLabel }
constructor TBoundLabel.Create(TheOwner: TComponent);
begin
inherited Create(TheOwner);
Name := 'EditLabel';
if Assigned(TheOwner) then
Caption := TheOwner.Name;
end;
// included by extctrls.pp