mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-01 18:12:30 +02:00

* fixed file name case * reduced flickering in treeview when updating git-svn-id: trunk@17193 -
22 lines
375 B
ObjectPascal
22 lines
375 B
ObjectPascal
{ This file was automatically created by Lazarus. do not edit!
|
|
This source is only used to compile and install the package.
|
|
}
|
|
|
|
unit leakview;
|
|
|
|
interface
|
|
|
|
uses
|
|
HeapTrcView, leakinfo, LazarusPackageIntf;
|
|
|
|
implementation
|
|
|
|
procedure Register;
|
|
begin
|
|
RegisterUnit('HeapTrcView', @HeapTrcView.Register);
|
|
end;
|
|
|
|
initialization
|
|
RegisterPackage('leakview', @Register);
|
|
end.
|