Components: try to prevent IDE from modifying autogenerated package files on every recompilation

git-svn-id: trunk@24565 -
This commit is contained in:
maxim 2010-04-10 21:24:58 +00:00
parent 4b25569b03
commit 55230bac1f
8 changed files with 59 additions and 59 deletions

View File

@ -1,8 +1,8 @@
{ 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. This source is only used to compile and install the package.
} }
unit cgiLaz; unit cgilaz;
interface interface
@ -16,5 +16,5 @@ begin
end; end;
initialization initialization
RegisterPackage('cgiLaz', @Register); RegisterPackage('cgiLaz',@Register);
end. end.

View File

@ -1,8 +1,8 @@
{ 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. This source is only used to compile and install the package.
} }
unit CGILazIDE; unit cgilazide;
interface interface
@ -13,9 +13,9 @@ implementation
procedure Register; procedure Register;
begin begin
RegisterUnit('CGILazIDEIntf', @CGILazIDEIntf.Register); RegisterUnit('CGILazIDEIntf',@CGILazIDEIntf.Register);
end; end;
initialization initialization
RegisterPackage('CGILazIDE', @Register); RegisterPackage('CGILazIDE',@Register);
end. end.

View File

@ -1,8 +1,8 @@
{ 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. This source is only used to compile and install the package.
} }
unit MemDSLaz; unit memdslaz;
interface interface
@ -13,9 +13,9 @@ implementation
procedure Register; procedure Register;
begin begin
RegisterUnit('frmSelectDataset', @frmSelectDataset.Register); RegisterUnit('frmSelectDataset',@frmSelectDataset.Register);
end; end;
initialization initialization
RegisterPackage('MemDSLaz', @Register); RegisterPackage('MemDSLaz',@Register);
end. end.

View File

@ -1,8 +1,8 @@
{ 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. This source is only used to compile and install the package.
} }
unit LazOpenGLContext; unit lazopenglcontext;
interface interface
@ -13,9 +13,9 @@ implementation
procedure Register; procedure Register;
begin begin
RegisterUnit('OpenGLContext', @OpenGLContext. Register); RegisterUnit('OpenGLContext',@OpenGLContext.Register);
end; end;
initialization initialization
RegisterPackage('LazOpenGLContext', @Register); RegisterPackage('LazOpenGLContext',@Register);
end. end.

View File

@ -1,8 +1,8 @@
{ 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. This source is only used to compile and install the package.
} }
unit ProjTemplates; unit projtemplates;
interface interface
@ -14,9 +14,9 @@ implementation
procedure Register; procedure Register;
begin begin
RegisterUnit('IDETemplateProject', @IDETemplateProject.Register); RegisterUnit('IDETemplateProject',@IDETemplateProject.Register);
end; end;
initialization initialization
RegisterPackage('ProjTemplates', @Register); RegisterPackage('ProjTemplates',@Register);
end. end.

View File

@ -1,8 +1,8 @@
{ Diese Datei wurde automatisch von Lazarus erzeugt. Sie darf nicht bearbeitet werden! { This file was automatically created by Lazarus. Do not edit!
Dieser Quelltext dient nur dem Übersetzen und Installieren des Packages. This source is only used to compile and install the package.
} }
unit RunTimeTypeInfoControls; unit runtimetypeinfocontrols;
interface interface
@ -13,10 +13,10 @@ implementation
procedure Register; procedure Register;
begin begin
RegisterUnit('RTTICtrls', @RTTICtrls.Register); RegisterUnit('RTTICtrls',@RTTICtrls.Register);
RegisterUnit('RTTIGrids', @RTTIGrids.Register); RegisterUnit('RTTIGrids',@RTTIGrids.Register);
end; end;
initialization initialization
RegisterPackage('RunTimeTypeInfoControls', @Register); RegisterPackage('RunTimeTypeInfoControls',@Register);
end. end.

View File

@ -1,8 +1,8 @@
{ 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. This source is only used to compile and install the package.
} }
unit SDFLaz; unit sdflaz;
interface interface
@ -13,9 +13,9 @@ implementation
procedure Register; procedure Register;
begin begin
RegisterUnit('RegisterSDF', @RegisterSDF.Register); RegisterUnit('RegisterSDF',@RegisterSDF.Register);
end; end;
initialization initialization
RegisterPackage('SDFLaz', @Register); RegisterPackage('SDFLaz',@Register);
end. end.

View File

@ -1,8 +1,8 @@
{ 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. This source is only used to compile and install the package.
} }
unit DBFLaz; unit dbflaz;
interface interface
@ -13,9 +13,9 @@ implementation
procedure Register; procedure Register;
begin begin
RegisterUnit('RegisterDBF', @RegisterDBF.Register); RegisterUnit('RegisterDBF',@RegisterDBF.Register);
end; end;
initialization initialization
RegisterPackage('DBFLaz', @Register); RegisterPackage('DBFLaz',@Register);
end. end.