switched from deprecated xmlcfg to xmlconf

git-svn-id: trunk@29286 -
This commit is contained in:
mattias 2011-02-01 09:34:27 +00:00
parent e4c031d58a
commit af3d007090
6 changed files with 9 additions and 9 deletions

View File

@ -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;

View File

@ -21,7 +21,7 @@ interface
uses
Classes, SysUtils, FileUtil, LCLProc, Forms, PropertyStorage, XMLCfg, DOM,
Classes, SysUtils, FileUtil, LCLProc, Forms, PropertyStorage, XMLConf, DOM,
LazConfigStorage;
type

View File

@ -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);

View File

@ -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"/>

View File

@ -7,7 +7,7 @@ unit fcllaz;
interface
uses
RegisterFCL, db, process, simpleipc, eventlog, xmlcfg, LazarusPackageIntf;
RegisterFCL, db, process, simpleipc, eventlog, XMLConf, LazarusPackageIntf;
implementation

View File

@ -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;