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:
@ -28,7 +28,7 @@
|
|||||||
</RunParams>
|
</RunParams>
|
||||||
<RequiredPackages Count="2">
|
<RequiredPackages Count="2">
|
||||||
<Item1>
|
<Item1>
|
||||||
<PackageName Value="JvXPBarLaz"/>
|
<PackageName Value="JvXPCtrlsLaz"/>
|
||||||
</Item1>
|
</Item1>
|
||||||
<Item2>
|
<Item2>
|
||||||
<PackageName Value="LCL"/>
|
<PackageName Value="LCL"/>
|
||||||
|
@ -2,7 +2,7 @@ program WinXPBarDemo;
|
|||||||
|
|
||||||
uses
|
uses
|
||||||
Forms, Interfaces,
|
Forms, Interfaces,
|
||||||
MainFrm in 'MainFrm.pas', JvXPBarLaz {frmMain};
|
MainFrm in 'MainFrm.pas', JvXPCtrlsLaz;
|
||||||
|
|
||||||
{$R *.res}
|
{$R *.res}
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<CONFIG>
|
<CONFIG>
|
||||||
<Package Version="4">
|
<Package Version="4">
|
||||||
<PathDelim Value="\"/>
|
<PathDelim Value="\"/>
|
||||||
<Name Value="JvXPBarLaz"/>
|
<Name Value="JvXPCtrlsLaz"/>
|
||||||
<Type Value="RunAndDesignTime"/>
|
<Type Value="RunAndDesignTime"/>
|
||||||
<AddToProjectUsesSection Value="True"/>
|
<AddToProjectUsesSection Value="True"/>
|
||||||
<Author Value="Sergio Samayoa"/>
|
<Author Value="Sergio Samayoa"/>
|
||||||
@ -38,21 +38,21 @@
|
|||||||
<UnitName Value="JvXPCore"/>
|
<UnitName Value="JvXPCore"/>
|
||||||
</Item3>
|
</Item3>
|
||||||
<Item4>
|
<Item4>
|
||||||
<Filename Value="JvXPBarReg.pp"/>
|
|
||||||
<HasRegisterProc Value="True"/>
|
|
||||||
<UnitName Value="JvXPBarReg"/>
|
|
||||||
</Item4>
|
|
||||||
<Item5>
|
|
||||||
<Filename Value="..\run\JvXPContainer.pas"/>
|
<Filename Value="..\run\JvXPContainer.pas"/>
|
||||||
<UnitName Value="JvXPContainer"/>
|
<UnitName Value="JvXPContainer"/>
|
||||||
</Item5>
|
</Item4>
|
||||||
<Item6>
|
<Item5>
|
||||||
<Filename Value="..\run\JvXPButtons.pas"/>
|
<Filename Value="..\run\JvXPButtons.pas"/>
|
||||||
<UnitName Value="JvXPButtons"/>
|
<UnitName Value="JvXPButtons"/>
|
||||||
</Item6>
|
</Item5>
|
||||||
<Item7>
|
<Item6>
|
||||||
<Filename Value="..\run\JvXPCheckCtrls.pas"/>
|
<Filename Value="..\run\JvXPCheckCtrls.pas"/>
|
||||||
<UnitName Value="JvXPCheckCtrls"/>
|
<UnitName Value="JvXPCheckCtrls"/>
|
||||||
|
</Item6>
|
||||||
|
<Item7>
|
||||||
|
<Filename Value="JvXPCtrlsReg.pp"/>
|
||||||
|
<HasRegisterProc Value="True"/>
|
||||||
|
<UnitName Value="JvXPCtrlsReg"/>
|
||||||
</Item7>
|
</Item7>
|
||||||
</Files>
|
</Files>
|
||||||
<RequiredPkgs Count="3">
|
<RequiredPkgs Count="3">
|
@ -2,22 +2,22 @@
|
|||||||
This source is only used to compile and install the package.
|
This source is only used to compile and install the package.
|
||||||
}
|
}
|
||||||
|
|
||||||
unit JvXPBarLaz;
|
unit JvXPCtrlsLaz;
|
||||||
|
|
||||||
{$warn 5023 off : no warning about unused units}
|
{$warn 5023 off : no warning about unused units}
|
||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
JvXPCoreUtils, JvXPBar, JvXPCore, JvXPBarReg, JvXPContainer, JvXPButtons,
|
JvXPCoreUtils, JvXPBar, JvXPCore, JvXPContainer, JvXPButtons,
|
||||||
JvXPCheckCtrls, LazarusPackageIntf;
|
JvXPCheckCtrls, JvXPCtrlsReg, LazarusPackageIntf;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
procedure Register;
|
procedure Register;
|
||||||
begin
|
begin
|
||||||
RegisterUnit('JvXPBarReg', @JvXPBarReg.Register);
|
RegisterUnit('JvXPCtrlsReg', @JvXPCtrlsReg.Register);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
RegisterPackage('JvXPBarLaz', @Register);
|
RegisterPackage('JvXPCtrlsLaz', @Register);
|
||||||
end.
|
end.
|
@ -1,4 +1,4 @@
|
|||||||
unit JvXPBarReg;
|
unit JvXPCtrlsReg;
|
||||||
|
|
||||||
{$mode objfpc}{$H+}
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
@ -27,7 +27,7 @@ begin
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
{$I ../resource/JvXPBarLaz.lrs}
|
{$I ../resource/JvXPCtrlsLaz.lrs}
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
|
Reference in New Issue
Block a user