mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 06:38:06 +02:00
Rename unit ProjPackBase -> ProjPackCommon. Reduce confusion as it defines a common interface etc., not a base class.
git-svn-id: trunk@54401 -
This commit is contained in:
parent
f4403e6e72
commit
0f1c5f448d
2
.gitattributes
vendored
2
.gitattributes
vendored
@ -8928,8 +8928,8 @@ packager/pkglinksdlg.pas svneol=native#text/plain
|
||||
packager/pkgmanager.pas svneol=native#text/pascal
|
||||
packager/pkgregisterbase.pas svneol=native#text/pascal
|
||||
packager/pkgvirtualuniteditor.pas svneol=native#text/pascal
|
||||
packager/projpackbase.pas svneol=native#text/pascal
|
||||
packager/projpackchecks.pas svneol=native#text/pascal
|
||||
packager/projpackcommon.pas svneol=native#text/pascal
|
||||
packager/registration/Makefile.compiled svneol=native#text/plain
|
||||
packager/registration/README.txt svneol=native#text/plain
|
||||
packager/registration/fcl.lpk svneol=native#text/plain
|
||||
|
@ -43,7 +43,7 @@ uses
|
||||
LazIDEIntf, PackageIntf, ProjectIntf, IDEExternToolIntf, IDEOptionsIntf,
|
||||
// IDE
|
||||
IDEProcs, DialogProcs, CompilerOptions,
|
||||
ProjPackBase, Project, ProjectDefs, PackageDefs, PackageSystem, PackageEditor,
|
||||
ProjPackCommon, Project, ProjectDefs, PackageDefs, PackageSystem, PackageEditor,
|
||||
BasePkgManager, LazarusIDEStrConsts,
|
||||
// Converter
|
||||
ConverterTypes, ConvertSettings, ConvCodeTool, MissingUnits, MissingPropertiesDlg,
|
||||
|
@ -407,7 +407,7 @@ begin
|
||||
T:=P.Targets.AddUnit('../packager/missingpkgfilesdlg.pas');
|
||||
T:=P.Targets.AddUnit('../packager/openinstalledpkgdlg.pas');
|
||||
T:=P.Targets.AddUnit('../packager/packagedefs.pas');
|
||||
T.Dependencies.AddUnit('projpackbase');
|
||||
T.Dependencies.AddUnit('projpackcommon');
|
||||
T:=P.Targets.AddUnit('../packager/packageeditor.pas');
|
||||
T:=P.Targets.AddUnit('../packager/packagelinks.pas');
|
||||
T:=P.Targets.AddUnit('../packager/pkggraphexplorer.pas');
|
||||
@ -439,7 +439,7 @@ begin
|
||||
T:=P.Targets.AddUnit('lazarusidestrconsts.pas');
|
||||
T:=P.Targets.AddUnit('environmentopts.pp');
|
||||
T:=P.Targets.AddUnit('compileroptions.pp');
|
||||
T:=P.Targets.AddUnit('../packager/projpackbase.pas');
|
||||
T:=P.Targets.AddUnit('../packager/projpackcommon.pas');
|
||||
T.Dependencies.AddUnit('filereferencelist');
|
||||
T:=P.Targets.AddUnit('filereferencelist.pas');
|
||||
|
||||
|
@ -63,7 +63,7 @@ uses
|
||||
CompOptsModes, ProjectResources, LazConf, W32Manifest, ProjectIcon,
|
||||
IDECmdLine, IDEProcs, CompilerOptions, RunParamsOpts, ModeMatrixOpts,
|
||||
TransferMacros, ProjectDefs, FileReferenceList, EditDefineTree,
|
||||
LazarusIDEStrConsts, ProjPackBase, PackageDefs, PackageSystem;
|
||||
LazarusIDEStrConsts, ProjPackCommon, PackageDefs, PackageSystem;
|
||||
|
||||
type
|
||||
TUnitInfo = class;
|
||||
|
@ -13,7 +13,7 @@ uses
|
||||
// IDEIntf
|
||||
IDEWindowIntf, PackageIntf, IDEDialogs,
|
||||
// IDE
|
||||
LazarusIDEStrConsts, PackageDefs, PackageSystem, ProjPackBase, ProjPackChecks;
|
||||
LazarusIDEStrConsts, PackageDefs, PackageSystem, ProjPackCommon, ProjPackChecks;
|
||||
|
||||
type
|
||||
|
||||
|
@ -49,7 +49,7 @@ uses
|
||||
PropEdits, LazIDEIntf, MacroIntf, MacroDefIntf, PackageIntf, IDEOptionsIntf,
|
||||
ProjPackIntf, IDEDialogs, ComponentReg,
|
||||
// IDE
|
||||
EditDefineTree, CompilerOptions, CompOptsModes, IDEOptionDefs, ProjPackBase,
|
||||
EditDefineTree, CompilerOptions, CompOptsModes, IDEOptionDefs, ProjPackCommon,
|
||||
LazarusIDEStrConsts, IDEProcs, TransferMacros, FileReferenceList, PublishModule;
|
||||
|
||||
type
|
||||
|
@ -13,7 +13,7 @@ uses
|
||||
// IDEIntf
|
||||
ComponentReg, IDEDialogs,
|
||||
// IDE
|
||||
LazarusIDEStrConsts, IDEDefs, Project, PackageSystem, PackageDefs, ProjPackBase;
|
||||
LazarusIDEStrConsts, IDEDefs, Project, PackageSystem, PackageDefs, ProjPackCommon;
|
||||
|
||||
// Packages:
|
||||
type
|
||||
|
@ -1,4 +1,4 @@
|
||||
unit ProjPackBase;
|
||||
unit ProjPackCommon;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
{.$INTERFACES CORBA} // No reference counting for IProjPack. (does not work)
|
Loading…
Reference in New Issue
Block a user