jvcllaz: Lowercase unit names in JVMM packages.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6686 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-10-13 21:57:57 +00:00
parent 56dd5e49ea
commit a46ec00554
14 changed files with 10 additions and 10 deletions

View File

@@ -0,0 +1,53 @@
unit JvMMReg;
{$mode objfpc}{$H+}
interface
uses
SysUtils;
procedure Register;
implementation
{$R ../../resource/jvmmreg.res}
uses
Classes, Controls, PropEdits, ComponentEditors,
JvDsgnConsts,
JvId3v1, JvId3v2Base, JvId3v2, JvGradient, JvId3v2EditorForm,
JvGradientHeaderPanel, JvSpecialProgress,
JvFullColorSpaces, JvFullColorCtrls, JvFullColorEditors, JvFullColorSpacesEditors,
JvFullColorForm, JvFullColorDialogs,
JvBmpAnimator;
procedure Register;
begin
RegisterComponents(RsPaletteJvcl, [
TJvId3v1, TJvId3v2,
TJvBmpAnimator,
TJvGradient, TJvGradientHeaderPanel,
TJvSpecialProgress,
TJvFullColorPanel, TJvFullColorTrackBar, TJvFullColorGroup, TJvFullColorLabel,
TJvFullColorSpaceCombo, TJvFullColorAxisCombo, TJvFullColorCircle,
TJvFullColorDialog, TJvFullColorCircleDialog
]);
RegisterComponentEditor(TJvID3Controller, TJvID3ControllerEditor);
RegisterPropertyEditor(TypeInfo(TJvID3FileInfo), nil, '', TJvID3FileInfoEditor);
RegisterPropertyEditor(TypeInfo(TJvFullColorSpaceID), nil, '', TJvColorIDEditor);
RegisterPropertyEditor(TypeInfo(TJvFullColor), nil, '', TJvFullColorProperty);
{
RegisterPropertyEditor(TypeInfo(TJvFullColorList), nil, '', TJvFullColorListEditor);
RegisterSelectionEditor(TJvFullColorPanel, TJvFullColorSelection);
RegisterSelectionEditor(TJvFullColorCircle, TJvFullColorSelection);
RegisterSelectionEditor(TJvFullColorLabel, TJvFullColorSelection);
RegisterSelectionEditor(TJvFullColorSpaceCombo, TJvFullColorSelection);
RegisterSelectionEditor(TJvFullColorAxisCombo, TJvFullColorSelection);
}
end;
end.