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:
wp_xxyyzz
2018-09-28 13:12:14 +00:00
parent 1c20854168
commit ddafb894d9
5 changed files with 3 additions and 3 deletions

View 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.