RxFPC:add new component rxxmlpropstorage

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6165 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
alexs75
2018-02-02 06:43:46 +00:00
parent 749f1cd764
commit 992be28e62
8 changed files with 214 additions and 93 deletions

View File

@@ -41,7 +41,7 @@ uses
procedure Register;
implementation
uses RxSystemServices, RxLogin, RxVersInfo, RxCloseFormValidator, RxIniPropStorage;
uses RxSystemServices, RxLogin, RxVersInfo, RxCloseFormValidator, RxIniPropStorage, RxXMLPropStorage;
const
sRxToolsPage = 'RX Tools';
@@ -71,6 +71,11 @@ begin
RegisterComponents(sRxToolsPage,[TRxIniPropStorage]);
end;
procedure RegisterRxXMLPropStorage;
begin
RegisterComponents(sRxToolsPage,[TRxXMLPropStorage]);
end;
procedure Register;
begin
RegisterUnit('RxLogin', @RegisterRxLogin);
@@ -78,6 +83,7 @@ begin
RegisterUnit('RxSystemServices', @RegisterRxSystemServices);
RegisterUnit('RxCloseFormValidator', @RegisterCloseFormValidator);
RegisterUnit('RxIniPropStorage', @RegisterRxIniPropStorage);
RegisterUnit('RxXMLPropStorage', @RegisterRxXMLPropStorage);
end;
end.