IDE: Move some units to IdeConf package.

This commit is contained in:
Martin 2023-01-26 14:47:42 +01:00
parent 448bb20ba6
commit 2972581f05
5 changed files with 11 additions and 11 deletions

View File

@ -797,11 +797,6 @@
<ResourceBaseClass Value="Frame"/>
<UnitName Value="SynColorAttribEditor"/>
</Unit>
<Unit>
<Filename Value="inputhistory.pas"/>
<IsPartOfProject Value="True"/>
<UnitName Value="InputHistory"/>
</Unit>
<Unit>
<Filename Value="makeresstrdlg.pas"/>
<IsPartOfProject Value="True"/>
@ -1040,10 +1035,6 @@
<IsPartOfProject Value="True"/>
<HasResources Value="True"/>
</Unit>
<Unit>
<Filename Value="diffpatch.pas"/>
<IsPartOfProject Value="True"/>
</Unit>
<Unit>
<Filename Value="lazarusmanager.pas"/>
<IsPartOfProject Value="True"/>

View File

@ -71,6 +71,14 @@ Files in this package are for the main configuration of the IDE."/>
<Filename Value="environmentopts.pp"/>
<UnitName Value="EnvironmentOpts"/>
</Item>
<Item>
<Filename Value="diffpatch.pas"/>
<UnitName Value="DiffPatch"/>
</Item>
<Item>
<Filename Value="inputhistory.pas"/>
<UnitName Value="InputHistory"/>
</Item>
</Files>
<RequiredPkgs>
<Item>

View File

@ -10,7 +10,8 @@ interface
uses
SearchPathProcs, RecentListProcs, IdeXmlConfigProcs, LazConf,
TransferMacrosIntf, IDEOptionDefs, ModeMatrixOpts, EditorToolBarOptions,
ToolBarOptionsBase, CoolBarOptions, EnvironmentOpts, LazarusPackageIntf;
ToolBarOptionsBase, CoolBarOptions, EnvironmentOpts, DiffPatch,
InputHistory, LazarusPackageIntf;
implementation

View File

@ -47,7 +47,7 @@ uses
// IdeIntf
ProjectIntf, IDEDialogs,
// IDE
DiffPatch, LazConf, IDEProcs, RecentListProcs, IdeXmlConfigProcs;
DiffPatch, LazConf, RecentListProcs, IdeXmlConfigProcs;
{$ifdef Windows}
{$define CaseInsensitiveFilenames}