{ :: 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 RegisterComponents('X²Software', [TX2GraphicContainer, TX2GraphicList]); RegisterPropertyEditor(TypeInfo(TX2GraphicCollection), TX2GraphicContainer, 'Graphics', TX2GraphicsProperty); RegisterComponentEditor(TX2GraphicContainer, TX2GraphicContainerEditor); RegisterComponentEditor(TX2GraphicList, TX2GraphicListEditor); end; end.