You've already forked lazarus-ccr
Initial commit of kcontrols
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1732 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
36
components/kcontrols/source/khexeditordesign.pas
Executable file
36
components/kcontrols/source/khexeditordesign.pas
Executable file
@@ -0,0 +1,36 @@
|
||||
unit khexeditordesign;
|
||||
|
||||
{$include kcontrols.inc}
|
||||
|
||||
interface
|
||||
|
||||
procedure Register;
|
||||
|
||||
implementation
|
||||
|
||||
{$IFNDEF FPC}
|
||||
{$R *.dcr}
|
||||
{$ENDIF}
|
||||
|
||||
uses
|
||||
Classes, KControls, KDialogs, KHexEditor
|
||||
{$IFDEF FPC}
|
||||
, LResources
|
||||
{$ENDIF}
|
||||
;
|
||||
|
||||
procedure Register;
|
||||
begin
|
||||
RegisterComponents('TK', [
|
||||
TKHexEditor,
|
||||
TKPrintPreview,
|
||||
TKPrintSetupDialog,
|
||||
TKPrintPreviewDialog
|
||||
]);
|
||||
end;
|
||||
|
||||
{$IFDEF FPC}
|
||||
initialization
|
||||
{$i khexeditordesign.lrs}
|
||||
{$ENDIF}
|
||||
end.
|
Reference in New Issue
Block a user