From 01898d3c57106cc26bc2ba2250255bcfb7247e0d Mon Sep 17 00:00:00 2001 From: mattias Date: Tue, 1 Mar 2016 15:25:02 +0000 Subject: [PATCH] components: less hints git-svn-id: trunk@51782 - --- components/plotfunction/lazplotfunction.pas | 15 ++++++++------- components/pochecker/pochecker.pas | 1 + components/printers/design/printers4lazide.pas | 1 + components/printers/printer4lazarus.pas | 1 + components/projecttemplates/projtemplates.pas | 13 +++++++------ .../rtticontrols/runtimetypeinfocontrols.pas | 13 +++++++------ components/rx/rx.pas | 1 + components/sdf/sdflaz.pas | 11 ++++++----- 8 files changed, 32 insertions(+), 24 deletions(-) diff --git a/components/plotfunction/lazplotfunction.pas b/components/plotfunction/lazplotfunction.pas index 7ba0e16f88..7e09308401 100644 --- a/components/plotfunction/lazplotfunction.pas +++ b/components/plotfunction/lazplotfunction.pas @@ -1,21 +1,22 @@ -{ 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 lazplotfunction; +unit lazplotfunction; +{$warn 5023 off : no warning about unused units} interface uses -regplotpanel, exprplotpanel, plotpanel, LazarusPackageIntf; + regplotpanel, exprplotpanel, plotpanel, LazarusPackageIntf; implementation -procedure Register; +procedure Register; begin - RegisterUnit('regplotpanel', @regplotpanel.Register); -end; + RegisterUnit('regplotpanel', @regplotpanel.Register); +end; initialization - RegisterPackage('lazplotfunction', @Register); + RegisterPackage('lazplotfunction', @Register); end. diff --git a/components/pochecker/pochecker.pas b/components/pochecker/pochecker.pas index 4ec24c827d..337c172ba7 100644 --- a/components/pochecker/pochecker.pas +++ b/components/pochecker/pochecker.pas @@ -4,6 +4,7 @@ unit PoChecker; +{$warn 5023 off : no warning about unused units} interface uses diff --git a/components/printers/design/printers4lazide.pas b/components/printers/design/printers4lazide.pas index ad5e492fd2..2d673b840f 100644 --- a/components/printers/design/printers4lazide.pas +++ b/components/printers/design/printers4lazide.pas @@ -4,6 +4,7 @@ unit printers4lazide; +{$warn 5023 off : no warning about unused units} interface uses diff --git a/components/printers/printer4lazarus.pas b/components/printers/printer4lazarus.pas index df32b026b3..fd322703d9 100644 --- a/components/printers/printer4lazarus.pas +++ b/components/printers/printer4lazarus.pas @@ -4,6 +4,7 @@ unit Printer4Lazarus; +{$warn 5023 off : no warning about unused units} interface uses diff --git a/components/projecttemplates/projtemplates.pas b/components/projecttemplates/projtemplates.pas index e6a53dcd40..9ada5547d7 100644 --- a/components/projecttemplates/projtemplates.pas +++ b/components/projecttemplates/projtemplates.pas @@ -2,21 +2,22 @@ This source is only used to compile and install the package. } -unit ProjTemplates; +unit ProjTemplates; +{$warn 5023 off : no warning about unused units} interface uses - ProjectTemplates, IDETemplateProject, frmTemplateVariables, + ProjectTemplates, IDETemplateProject, frmTemplateVariables, LazarusPackageIntf; implementation -procedure Register; +procedure Register; begin - RegisterUnit('IDETemplateProject', @IDETemplateProject.Register); -end; + RegisterUnit('IDETemplateProject', @IDETemplateProject.Register); +end; initialization - RegisterPackage('ProjTemplates', @Register); + RegisterPackage('ProjTemplates', @Register); end. diff --git a/components/rtticontrols/runtimetypeinfocontrols.pas b/components/rtticontrols/runtimetypeinfocontrols.pas index 8ce7b7a0e4..d74e1aa814 100644 --- a/components/rtticontrols/runtimetypeinfocontrols.pas +++ b/components/rtticontrols/runtimetypeinfocontrols.pas @@ -2,8 +2,9 @@ This source is only used to compile and install the package. } -unit RunTimeTypeInfoControls; +unit RunTimeTypeInfoControls; +{$warn 5023 off : no warning about unused units} interface uses @@ -11,12 +12,12 @@ uses implementation -procedure Register; +procedure Register; begin - RegisterUnit('RTTICtrls', @RTTICtrls.Register); - RegisterUnit('RTTIGrids', @RTTIGrids.Register); -end; + RegisterUnit('RTTICtrls', @RTTICtrls.Register); + RegisterUnit('RTTIGrids', @RTTIGrids.Register); +end; initialization - RegisterPackage('RunTimeTypeInfoControls', @Register); + RegisterPackage('RunTimeTypeInfoControls', @Register); end. diff --git a/components/rx/rx.pas b/components/rx/rx.pas index 9750bcd34a..0ea28d877f 100644 --- a/components/rx/rx.pas +++ b/components/rx/rx.pas @@ -4,6 +4,7 @@ unit rx; +{$warn 5023 off : no warning about unused units} interface uses diff --git a/components/sdf/sdflaz.pas b/components/sdf/sdflaz.pas index bcc4ae1fd0..cd6e443d6b 100644 --- a/components/sdf/sdflaz.pas +++ b/components/sdf/sdflaz.pas @@ -2,8 +2,9 @@ This source is only used to compile and install the package. } -unit SDFLaz; +unit SDFLaz; +{$warn 5023 off : no warning about unused units} interface uses @@ -11,11 +12,11 @@ uses implementation -procedure Register; +procedure Register; begin - RegisterUnit('RegisterSDF', @RegisterSDF.Register); -end; + RegisterUnit('RegisterSDF', @RegisterSDF.Register); +end; initialization - RegisterPackage('SDFLaz', @Register); + RegisterPackage('SDFLaz', @Register); end.