You've already forked lazarus-ccr
jvcllaz: Rename package JvXPBar to JvXPCtrls.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5406 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
<CONFIG>
|
||||
<Package Version="4">
|
||||
<PathDelim Value="\"/>
|
||||
<Name Value="JvXPBarLaz"/>
|
||||
<Name Value="JvXPCtrlsLaz"/>
|
||||
<Type Value="RunAndDesignTime"/>
|
||||
<AddToProjectUsesSection Value="True"/>
|
||||
<Author Value="Sergio Samayoa"/>
|
||||
@ -38,21 +38,21 @@
|
||||
<UnitName Value="JvXPCore"/>
|
||||
</Item3>
|
||||
<Item4>
|
||||
<Filename Value="JvXPBarReg.pp"/>
|
||||
<HasRegisterProc Value="True"/>
|
||||
<UnitName Value="JvXPBarReg"/>
|
||||
</Item4>
|
||||
<Item5>
|
||||
<Filename Value="..\run\JvXPContainer.pas"/>
|
||||
<UnitName Value="JvXPContainer"/>
|
||||
</Item5>
|
||||
<Item6>
|
||||
</Item4>
|
||||
<Item5>
|
||||
<Filename Value="..\run\JvXPButtons.pas"/>
|
||||
<UnitName Value="JvXPButtons"/>
|
||||
</Item6>
|
||||
<Item7>
|
||||
</Item5>
|
||||
<Item6>
|
||||
<Filename Value="..\run\JvXPCheckCtrls.pas"/>
|
||||
<UnitName Value="JvXPCheckCtrls"/>
|
||||
</Item6>
|
||||
<Item7>
|
||||
<Filename Value="JvXPCtrlsReg.pp"/>
|
||||
<HasRegisterProc Value="True"/>
|
||||
<UnitName Value="JvXPCtrlsReg"/>
|
||||
</Item7>
|
||||
</Files>
|
||||
<RequiredPkgs Count="3">
|
@ -2,22 +2,22 @@
|
||||
This source is only used to compile and install the package.
|
||||
}
|
||||
|
||||
unit JvXPBarLaz;
|
||||
unit JvXPCtrlsLaz;
|
||||
|
||||
{$warn 5023 off : no warning about unused units}
|
||||
interface
|
||||
|
||||
uses
|
||||
JvXPCoreUtils, JvXPBar, JvXPCore, JvXPBarReg, JvXPContainer, JvXPButtons,
|
||||
JvXPCheckCtrls, LazarusPackageIntf;
|
||||
JvXPCoreUtils, JvXPBar, JvXPCore, JvXPContainer, JvXPButtons,
|
||||
JvXPCheckCtrls, JvXPCtrlsReg, LazarusPackageIntf;
|
||||
|
||||
implementation
|
||||
|
||||
procedure Register;
|
||||
begin
|
||||
RegisterUnit('JvXPBarReg', @JvXPBarReg.Register);
|
||||
RegisterUnit('JvXPCtrlsReg', @JvXPCtrlsReg.Register);
|
||||
end;
|
||||
|
||||
initialization
|
||||
RegisterPackage('JvXPBarLaz', @Register);
|
||||
RegisterPackage('JvXPCtrlsLaz', @Register);
|
||||
end.
|
@ -1,4 +1,4 @@
|
||||
unit JvXPBarReg;
|
||||
unit JvXPCtrlsReg;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
@ -27,7 +27,7 @@ begin
|
||||
end;
|
||||
|
||||
initialization
|
||||
{$I ../resource/JvXPBarLaz.lrs}
|
||||
{$I ../resource/JvXPCtrlsLaz.lrs}
|
||||
|
||||
end.
|
||||
|
Reference in New Issue
Block a user