mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-26 13:49:12 +02:00
switched from deprecated xmlcfg to xmlconf
git-svn-id: trunk@29286 -
This commit is contained in:
parent
e4c031d58a
commit
af3d007090
@ -44,7 +44,7 @@ interface
|
||||
|
||||
uses
|
||||
Math, Classes, SysUtils, LCLProc, Forms, Controls, FileUtil, Dialogs,
|
||||
LazConfigStorage, XMLCfg, XMLPropStorage, StdCtrls, LCLIntf,
|
||||
LazConfigStorage, XMLConf, XMLPropStorage, StdCtrls, LCLIntf,
|
||||
BaseIDEIntf, ProjectIntf, MacroIntf, IDEDialogs, MenuIntf, LazIDEIntf,
|
||||
IDEWindowIntf, IDEOptionsIntf,
|
||||
AnchorDockStr, AnchorDocking, AnchorDockOptionsDlg;
|
||||
|
@ -21,7 +21,7 @@ interface
|
||||
|
||||
|
||||
uses
|
||||
Classes, SysUtils, FileUtil, LCLProc, Forms, PropertyStorage, XMLCfg, DOM,
|
||||
Classes, SysUtils, FileUtil, LCLProc, Forms, PropertyStorage, XMLConf, DOM,
|
||||
LazConfigStorage;
|
||||
|
||||
type
|
||||
|
@ -1454,7 +1454,7 @@ begin
|
||||
AddFile(SetDirSeparators('packages/fcl-db/src/base/db.pas'),'DB',pftUnit,[],cpBase);
|
||||
AddFile(SetDirSeparators('packages/fcl-process/src/process.pp'),'Process',pftUnit,[],cpBase);
|
||||
AddFile(SetDirSeparators('packages/fcl-process/src/simpleipc.pp'),'SimpleIPC',pftUnit,[],cpBase);
|
||||
AddFile(SetDirSeparators('packages/fcl-xml/src/xmlcfg.pp'),'XMLCfg',pftUnit,[],cpBase);
|
||||
AddFile(SetDirSeparators('packages/fcl-xml/src/xmlconf.pp'),'XMLConf',pftUnit,[],cpBase);
|
||||
AddFile(SetDirSeparators('packages/fcl-base/src/eventlog.pp'),'EventLog',pftUnit,[],cpBase);
|
||||
|
||||
SetAllComponentPriorities(FCLCompPriority);
|
||||
|
@ -49,9 +49,9 @@
|
||||
<UnitName Value="eventlog"/>
|
||||
</Item6>
|
||||
<Item7>
|
||||
<Filename Value="xmlcfg.pas"/>
|
||||
<Filename Value="XMLConf.pas"/>
|
||||
<Type Value="Virtual Unit"/>
|
||||
<UnitName Value="xmlcfg"/>
|
||||
<UnitName Value="XMLConf"/>
|
||||
</Item7>
|
||||
<Item8>
|
||||
<Filename Value="fcllaz.pas"/>
|
||||
|
@ -7,7 +7,7 @@ unit fcllaz;
|
||||
interface
|
||||
|
||||
uses
|
||||
RegisterFCL, db, process, simpleipc, eventlog, xmlcfg, LazarusPackageIntf;
|
||||
RegisterFCL, db, process, simpleipc, eventlog, XMLConf, LazarusPackageIntf;
|
||||
|
||||
implementation
|
||||
|
||||
|
@ -39,7 +39,7 @@ interface
|
||||
|
||||
uses
|
||||
LazarusPackageIntf,
|
||||
Classes, SysUtils, Process, DB, BufDataset, SimpleIPC, XMLCfg, EventLog;
|
||||
Classes, SysUtils, Process, DB, BufDataset, SimpleIPC, XMLConf, EventLog;
|
||||
|
||||
procedure Register;
|
||||
|
||||
@ -65,7 +65,7 @@ begin
|
||||
RegisterComponents('System',[TSimpleIPCClient, TSimpleIPCServer]);
|
||||
end;
|
||||
|
||||
procedure RegisterXMLCfg;
|
||||
procedure RegisterXMLConf;
|
||||
begin
|
||||
RegisterComponents('System',[TXMLConfig]);
|
||||
end;
|
||||
@ -80,7 +80,7 @@ begin
|
||||
RegisterUnit('DB',@RegisterDB);
|
||||
RegisterUnit('Process',@RegisterProcess);
|
||||
RegisterUnit('SimpleIPC', @RegisterSimpleIPC);
|
||||
RegisterUnit('XMLCfg',@RegisterXMLCfg);
|
||||
RegisterUnit('XMLConf',@RegisterXMLConf);
|
||||
RegisterUnit('EventLog',@RegisterEventLog);
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user