You've already forked lazarus-ccr
RxFPC:fix compile on FPC < 3.1
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5071 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -127,10 +127,12 @@ begin
|
||||
RegisterComponents('RX DBAware',[TRxDBGridFooterTools]);
|
||||
end;
|
||||
|
||||
{$IF (FPC_FULLVERSION >= 30101)}
|
||||
procedure RegisterRxDBGridExportPDF;
|
||||
begin
|
||||
RegisterComponents('RX DBAware',[TRxDBGridExportPDF]);
|
||||
end;
|
||||
{$ENDIF}
|
||||
|
||||
procedure RegisterRxMemDS;
|
||||
begin
|
||||
@ -171,7 +173,9 @@ begin
|
||||
RegisterUnit('rxmemds', @RegisterRxMemDS);
|
||||
RegisterUnit('RxDBColorBox', @RegisterRxDBColorBox);
|
||||
RegisterUnit('RxDBGridFooterTools', @RegisterRxDbGridFooterTools);
|
||||
{$IF (FPC_FULLVERSION >= 30101)}
|
||||
RegisterUnit('RxDBGridExportPdf', @RegisterRxDBGridExportPDF);
|
||||
{$ENDIF}
|
||||
|
||||
//Component Editors
|
||||
RegisterComponentEditor(TRxMemoryData, TMemDataSetEditor);
|
||||
|
Reference in New Issue
Block a user