RxFPC:fix AV in IDE on show all components. New component icons from zoltanleo. New component - TRxPopupNotifier

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6341 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
alexs75
2018-04-23 07:48:53 +00:00
parent 6f73d6d007
commit 1d692daea7
128 changed files with 12822 additions and 17121 deletions

View File

@@ -41,7 +41,7 @@ uses
procedure Register;
implementation
uses RxSystemServices, RxLogin, RxVersInfo, RxCloseFormValidator, RxIniPropStorage, RxXMLPropStorage;
uses RxSystemServices, RxLogin, RxVersInfo, RxCloseFormValidator, RxIniPropStorage, RxXMLPropStorage, RxPopupNotifier;
const
sRxToolsPage = 'RX Tools';
@@ -76,6 +76,11 @@ begin
RegisterComponents(sRxToolsPage,[TRxXMLPropStorage]);
end;
procedure RegisterRxPopupNotifier;
begin
RegisterComponents(sRxToolsPage,[TRxPopupNotifier]);
end;
procedure Register;
begin
RegisterUnit('RxLogin', @RegisterRxLogin);
@@ -84,6 +89,7 @@ begin
RegisterUnit('RxCloseFormValidator', @RegisterCloseFormValidator);
RegisterUnit('RxIniPropStorage', @RegisterRxIniPropStorage);
RegisterUnit('RxXMLPropStorage', @RegisterRxXMLPropStorage);
RegisterUnit('RxPopupNotifier', @RegisterRxPopupNotifier);
end;
end.