lazarus/lcl/include/form.inc
lazarus d3f24412e6 MG: fixed mem leak in TPixmap
git-svn-id: trunk@3354 -
2002-09-16 16:18:50 +00:00

34 lines
1.6 KiB
PHP

{
*****************************************************************************
* *
* 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. *
* *
*****************************************************************************
}
{------------------------------------------------------------------------------}
{ TForm Destructor }
{------------------------------------------------------------------------------}
destructor TForm.Destroy;
begin
Assert(False, 'Trace:Destroying signals for TForm');
inherited Destroy;
end;
{------------------------------------------------------------------------------}
{ TForm Constructor }
{------------------------------------------------------------------------------}
constructor TForm.Create(AOwner : TComponent);
begin
inherited Create(AOwner);
end;