lazarus/components/IdeInspector/ideinspector.pas
martin 77a6748d93 IdeInspector: Work with modal too
git-svn-id: trunk@28687 -
2010-12-11 18:26:46 +00:00

22 lines
403 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit IdeInspector;
interface
uses
MainInspector, IdeInspectKeyGrapper, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('MainInspector', @MainInspector.Register);
end;
initialization
RegisterPackage('IdeInspector', @Register);
end.