1
0
mirror of synced 2024-07-03 10:00:36 +00:00
x2cl/Packages/X2CLGLReg.pas

34 lines
640 B
ObjectPascal
Raw Normal View History

{
:: Registers the GraphicList components
::
:: Last changed: $Date$
:: Revision: $Rev$
:: Author: $Author$
}
unit X2CLGLReg;
interface
procedure Register;
implementation
uses
Classes,
DesignIntf,
X2CLGraphicList,
X2CLGLEditors;
{$R ..\Resources\GraphicList.dcr}
procedure Register;
begin
RegisterNoIcon([TX2GraphicContainerItem]);
RegisterComponents('X2Software', [TX2GraphicContainer, TX2GraphicList]);
RegisterComponentEditor(TX2GraphicContainer, TX2GraphicContainerEditor);
RegisterComponentEditor(TX2GraphicList, TX2GraphicListEditor);
end;
end.