mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-29 16:31:40 +02:00
IdeIntf: name project / package common base class as TIDEProjPackBase.
git-svn-id: trunk@45893 -
This commit is contained in:
parent
bcad8a0a98
commit
1a1afd969c
@ -98,7 +98,7 @@ type
|
||||
|
||||
{ TLazPackageID }
|
||||
|
||||
TLazPackageID = class(TProjPack)
|
||||
TLazPackageID = class(TIDEProjPackBase)
|
||||
private
|
||||
FIDAsWord: string;
|
||||
protected
|
||||
|
@ -368,7 +368,7 @@ type
|
||||
petUnit
|
||||
);
|
||||
|
||||
TLazProject = class(TProjPack)
|
||||
TLazProject = class(TIDEProjPackBase)
|
||||
private
|
||||
FCleanOutputFileMask: string;
|
||||
FCleanSourcesFileMask: string;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user