components: less hints

git-svn-id: trunk@51783 -
This commit is contained in:
mattias 2016-03-01 15:25:24 +00:00
parent 01898d3c57
commit 45a79882b5
5 changed files with 23 additions and 18 deletions

View File

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

View File

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

View File

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

View File

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

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 lazparadox;
unit lazparadox;
{$warn 5023 off : no warning about unused units}
interface
uses
regparadox, LazarusPackageIntf;
regparadox, LazarusPackageIntf;
implementation
procedure Register;
procedure Register;
begin
RegisterUnit('regparadox', @regparadox.Register);
end;
RegisterUnit('regparadox', @regparadox.Register);
end;
initialization
RegisterPackage('lazparadox', @Register);
RegisterPackage('lazparadox', @Register);
end.