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 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
@ -16,5 +16,5 @@ begin
end;
initialization
RegisterPackage('cgiLaz', @Register);
RegisterPackage('cgiLaz',@Register);
end.

View File

@ -1,8 +1,8 @@
{ 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
@ -13,9 +13,9 @@ implementation
procedure Register;
begin
RegisterUnit('CGILazIDEIntf', @CGILazIDEIntf.Register);
RegisterUnit('CGILazIDEIntf',@CGILazIDEIntf.Register);
end;
initialization
RegisterPackage('CGILazIDE', @Register);
RegisterPackage('CGILazIDE',@Register);
end.

View File

@ -1,8 +1,8 @@
{ 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
@ -13,9 +13,9 @@ implementation
procedure Register;
begin
RegisterUnit('frmSelectDataset', @frmSelectDataset.Register);
RegisterUnit('frmSelectDataset',@frmSelectDataset.Register);
end;
initialization
RegisterPackage('MemDSLaz', @Register);
RegisterPackage('MemDSLaz',@Register);
end.

View File

@ -1,8 +1,8 @@
{ 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
@ -13,9 +13,9 @@ implementation
procedure Register;
begin
RegisterUnit('OpenGLContext', @OpenGLContext. Register);
RegisterUnit('OpenGLContext',@OpenGLContext.Register);
end;
initialization
RegisterPackage('LazOpenGLContext', @Register);
RegisterPackage('LazOpenGLContext',@Register);
end.

View File

@ -1,8 +1,8 @@
{ 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
@ -14,9 +14,9 @@ implementation
procedure Register;
begin
RegisterUnit('IDETemplateProject', @IDETemplateProject.Register);
RegisterUnit('IDETemplateProject',@IDETemplateProject.Register);
end;
initialization
RegisterPackage('ProjTemplates', @Register);
RegisterPackage('ProjTemplates',@Register);
end.

View File

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

View File

@ -1,8 +1,8 @@
{ 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
@ -13,9 +13,9 @@ implementation
procedure Register;
begin
RegisterUnit('RegisterSDF', @RegisterSDF.Register);
RegisterUnit('RegisterSDF',@RegisterSDF.Register);
end;
initialization
RegisterPackage('SDFLaz', @Register);
RegisterPackage('SDFLaz',@Register);
end.

View File

@ -1,8 +1,8 @@
{ 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
@ -13,9 +13,9 @@ implementation
procedure Register;
begin
RegisterUnit('RegisterDBF', @RegisterDBF.Register);
RegisterUnit('RegisterDBF',@RegisterDBF.Register);
end;
initialization
RegisterPackage('DBFLaz', @Register);
RegisterPackage('DBFLaz',@Register);
end.