jvcllaz: Lowercase file names of JvCtrls units

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6620 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-08-29 14:17:21 +00:00
parent c023cde154
commit aa9b626772
9 changed files with 8 additions and 8 deletions

View File

@ -0,0 +1,38 @@
unit JvCtrlsReg;
{$mode objfpc}{$H+}
interface
uses
SysUtils;
procedure Register;
implementation
{$R ../../resource/jvctrlsreg.res}
uses
Classes, JvDsgnConsts,
JvMovableBevel, JvRuler,
JvHtControls, {JvDBHTLabel,} JvHint, JvHTHintForm,
PropEdits, Controls;
procedure Register;
begin
RegisterComponents(RsPaletteJvcl, [
TJvMovableBevel, TJvMovablePanel, TJvRuler,
TJvHint, TJvHTLabel, TJvHTListbox, TJvHTCombobox
]);
{
RegisterComponents(RsPaletteBarPanel, [TJvMovableBevel]);
RegisterComponents(RsPaletteLabel, [TJvHTLabel]);
RegisterComponents(RsPaletteListComboTree, [TJvHTListBox, TJvHTComboBox]);
RegisterComponents(RsPaletteNonVisual, [TJvHint]);
}
RegisterPropertyEditor(TypeInfo(TCaption), TJvHTLabel, 'Caption', TJvHintProperty);
end;
end.