Changeset 150 for trunk/Packages
- Timestamp:
- Feb 4, 2024, 2:48:00 PM (9 months ago)
- Location:
- trunk/Packages/ModularSystem
- Files:
-
- 1 edited
- 1 copied
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/ModularSystem/ModularSystem.lpk
r137 r150 39 39 <License Value="GNU/LGPLv3"/> 40 40 <Version Minor="1"/> 41 <Files Count=" 1">41 <Files Count="2"> 42 42 <Item1> 43 <Filename Value=" UModularSystem.pas"/>43 <Filename Value="ModularSystem.pas"/> 44 44 <HasRegisterProc Value="True"/> 45 <UnitName Value=" UModularSystem"/>45 <UnitName Value="ModularSystem"/> 46 46 </Item1> 47 <Item2> 48 <Filename Value="ModularSystemPackage.pas"/> 49 <Type Value="Main Unit"/> 50 <UnitName Value="ModularSystemPackage"/> 51 </Item2> 47 52 </Files> 48 53 <CompatibilityMode Value="True"/> -
trunk/Packages/ModularSystem/ModularSystem.pas
r149 r150 1 unit UModularSystem;1 unit ModularSystem; 2 2 3 3 interface 4 4 5 5 uses 6 Classes, SysUtils, Generics.Collections, URegistry;6 Classes, SysUtils, Generics.Collections, RegistryEx; 7 7 8 8 type -
trunk/Packages/ModularSystem/ModularSystemPackage.pas
r149 r150 3 3 } 4 4 5 unit ModularSystem ;5 unit ModularSystemPackage; 6 6 7 7 interface 8 8 9 9 uses 10 UModularSystem, LazarusPackageIntf;10 ModularSystem, LazarusPackageIntf; 11 11 12 12 implementation … … 14 14 procedure Register; 15 15 begin 16 RegisterUnit(' UModularSystem', @UModularSystem.Register);16 RegisterUnit('ModularSystem', @ModularSystem.Register); 17 17 end; 18 18
Note:
See TracChangeset
for help on using the changeset viewer.