lazarus-ccr/components/richmemo/ide/richmemo_design.pas
ondrejpokorny 29fab46e41 RichMemo: fix duplicate PPUs
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7329 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2020-03-02 09:12:57 +00:00

23 lines
459 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit richmemo_design;
{$warn 5023 off : no warning about unused units}
interface
uses
RtfEditPropDialog, richmemoregister, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('richmemoregister', @richmemoregister.Register);
end;
initialization
RegisterPackage('richmemo_design', @Register);
end.