You've already forked lazarus-ccr
jvcllaz: Use lower-case unit file names in the JvStdCtrls packages
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6662 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
26
components/jvcllaz/design/JvStdCtrls/jvstdctrlsreg.pas
Normal file
26
components/jvcllaz/design/JvStdCtrls/jvstdctrlsreg.pas
Normal file
@@ -0,0 +1,26 @@
|
||||
unit JvStdCtrlsReg;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
SysUtils;
|
||||
|
||||
procedure Register;
|
||||
|
||||
implementation
|
||||
|
||||
{$R ../../resource/jvstdctrlsreg.res}
|
||||
|
||||
uses
|
||||
Classes, Controls, JvDsgnConsts, JvButton, JvCheckbox, JvBaseEdits;
|
||||
|
||||
procedure Register;
|
||||
begin
|
||||
//RegisterComponents(RsPaletteButton, [TJvButton]);
|
||||
RegisterComponents(RsPaletteJvcl, [TJvCheckbox, TJvCalcEdit]);
|
||||
end;
|
||||
|
||||
end.
|
||||
|
Reference in New Issue
Block a user