From 40e70b8c3e5cb34e29e13ff982d8b38ebaecead5 Mon Sep 17 00:00:00 2001 From: blikblum Date: Fri, 27 May 2016 18:46:17 +0000 Subject: [PATCH] Update package files to avoid warnings git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@4670 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- components/jvcllaz/packages/JvCoreLaz.pas | 7 ++++--- components/jvcllaz/packages/JvXPBarLaz.pas | 15 ++++++++------- 2 files changed, 12 insertions(+), 10 deletions(-) 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.