components: less hints

git-svn-id: trunk@51784 -
This commit is contained in:
mattias 2016-03-01 15:25:53 +00:00
parent 45a79882b5
commit 5f99c1f5b7
6 changed files with 26 additions and 20 deletions

View File

@ -4,6 +4,7 @@
unit leakview;
{$warn 5023 off : no warning about unused units}
interface
uses

View File

@ -2,19 +2,20 @@
This source is only used to compile and install the package.
}
unit MacOSFiles;
unit MacOSFiles;
{$warn 5023 off : no warning about unused units}
interface
uses
MacApplicationRes, LazarusPackageIntf;
MacApplicationRes, LazarusPackageIntf;
implementation
procedure Register;
procedure Register;
begin
end;
end;
initialization
RegisterPackage('MacOSFiles', @Register);
RegisterPackage('MacOSFiles', @Register);
end.

View File

@ -4,6 +4,7 @@
unit EditorMacroScript;
{$warn 5023 off : no warning about unused units}
interface
uses

View File

@ -2,8 +2,9 @@
This source is only used to compile and install the package.
}
unit MemDSLaz;
unit MemDSLaz;
{$warn 5023 off : no warning about unused units}
interface
uses
@ -11,11 +12,11 @@ uses
implementation
procedure Register;
procedure Register;
begin
RegisterUnit('frmSelectDataset', @frmSelectDataset.Register);
end;
RegisterUnit('frmSelectDataset', @frmSelectDataset.Register);
end;
initialization
RegisterPackage('MemDSLaz', @Register);
RegisterPackage('MemDSLaz', @Register);
end.

View File

@ -1,21 +1,22 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
This source is only used to compile and install the package.
}
unit messagecomposerpkg;
unit messagecomposerpkg;
{$warn 5023 off : no warning about unused units}
interface
uses
MessageComposer, LazarusPackageIntf;
MessageComposer, LazarusPackageIntf;
implementation
procedure Register;
procedure Register;
begin
RegisterUnit('MessageComposer', @MessageComposer.Register);
end;
RegisterUnit('MessageComposer', @MessageComposer.Register);
end;
initialization
RegisterPackage('messagecomposerpkg', @Register);
RegisterPackage('messagecomposerpkg', @Register);
end.

View File

@ -1,13 +1,14 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
This source is only used to compile and install the package.
}
unit LazMouseAndKeyInput;
unit LazMouseAndKeyInput;
{$warn 5023 off : no warning about unused units}
interface
uses
MouseAndKeyInput;
MouseAndKeyInput;
implementation