diff --git a/components/jvcllaz/packages/JvCoreLaz.pas b/components/jvcllaz/packages/JvCoreLaz.pas index 09b63fc3f..bd3f09e17 100644 --- a/components/jvcllaz/packages/JvCoreLaz.pas +++ b/components/jvcllaz/packages/JvCoreLaz.pas @@ -1,14 +1,15 @@ { 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 JvCoreLaz; +unit JvCoreLaz; +{$warn 5023 off : no warning about unused units} interface uses JvTypes, JvComponent, JvConsts, JvExControls, JvExExtCtrls, JvJCLUtils, - JvJVCLUtils; + JvJVCLUtils; implementation diff --git a/components/jvcllaz/packages/JvXPBarLaz.pas b/components/jvcllaz/packages/JvXPBarLaz.pas index 9fb9e07bb..ed3918bf0 100644 --- a/components/jvcllaz/packages/JvXPBarLaz.pas +++ b/components/jvcllaz/packages/JvXPBarLaz.pas @@ -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 JvXPBarLaz; +unit JvXPBarLaz; +{$warn 5023 off : no warning about unused units} interface uses - JvXPCoreUtils, JvXPBar, JvXPCore, JvXPBarReg, LazarusPackageIntf; + JvXPCoreUtils, JvXPBar, JvXPCore, JvXPBarReg, LazarusPackageIntf; implementation -procedure Register; +procedure Register; begin - RegisterUnit('JvXPBarReg', @JvXPBarReg.Register); -end; + RegisterUnit('JvXPBarReg', @JvXPBarReg.Register); +end; initialization - RegisterPackage('JvXPBarLaz', @Register); + RegisterPackage('JvXPBarLaz', @Register); end.