IdeIntf: name project / package common base class as TIDEProjPackBase.

git-svn-id: trunk@45893 -
This commit is contained in:
juha 2014-07-16 19:59:26 +00:00
parent bcad8a0a98
commit 1a1afd969c
3 changed files with 7 additions and 7 deletions

View File

@ -98,7 +98,7 @@ type
{ TLazPackageID }
TLazPackageID = class(TProjPack)
TLazPackageID = class(TIDEProjPackBase)
private
FIDAsWord: string;
protected

View File

@ -368,7 +368,7 @@ type
petUnit
);
TLazProject = class(TProjPack)
TLazProject = class(TIDEProjPackBase)
private
FCleanOutputFileMask: string;
FCleanSourcesFileMask: string;

View File

@ -43,9 +43,9 @@ type
end;
{$M-}
{ TProjPack }
{ TIDEProjPackBase }
TProjPack = class(TPersistent)
TIDEProjPackBase = class(TPersistent)
private
protected
FIDEOptions: TAbstractIDEOptions; //actually TProjectIDEOptions or TPackageIDEOptions;
@ -58,14 +58,14 @@ type
implementation
{ TProjPack }
{ TIDEProjPackBase }
constructor TProjPack.Create;
constructor TIDEProjPackBase.Create;
begin
inherited Create;
end;
destructor TProjPack.Destroy;
destructor TIDEProjPackBase.Destroy;
begin
inherited Destroy;
end;