RxFPC:move registration TRxTextHolder from dcl_rxtools to rxnew

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6712 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
alexs75
2018-11-06 10:10:35 +00:00
parent 7594584f05
commit de7bf60e11
4 changed files with 42 additions and 22 deletions

View File

@@ -41,7 +41,8 @@ uses
procedure Register;
implementation
uses RxSystemServices, RxLogin, RxVersInfo, RxCloseFormValidator, RxIniPropStorage, RxXMLPropStorage, RxPopupNotifier;
uses RxSystemServices, RxLogin, RxVersInfo, RxCloseFormValidator, RxIniPropStorage, RxXMLPropStorage, RxPopupNotifier,
RxTextHolder;
const
sRxToolsPage = 'RX Tools';
@@ -81,6 +82,11 @@ begin
RegisterComponents(sRxToolsPage,[TRxPopupNotifier]);
end;
procedure RegisterRxTextHolder;
begin
RegisterComponents(sRxToolsPage,[TRxTextHolder]);
end;
procedure Register;
begin
RegisterUnit('RxLogin', @RegisterRxLogin);
@@ -90,6 +96,7 @@ begin
RegisterUnit('RxIniPropStorage', @RegisterRxIniPropStorage);
RegisterUnit('RxXMLPropStorage', @RegisterRxXMLPropStorage);
RegisterUnit('RxPopupNotifier', @RegisterRxPopupNotifier);
RegisterUnit('RxTextHolder', @RegisterRxTextHolder);
end;
end.