Changeset 328 for Common


Ignore:
Timestamp:
Feb 13, 2012, 7:28:36 PM (12 years ago)
Author:
chronos
Message:
  • Added: URegistry and ULasOpenedList are now part of package Common.
Location:
Common
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • Common/Common.lpk

    r297 r328  
    2222    <License Value="GNU/GPL"/>
    2323    <Version Minor="4"/>
    24     <Files Count="10">
     24    <Files Count="12">
    2525      <Item1>
    2626        <Filename Value="StopWatch.pas"/>
     
    6464        <UnitName Value="UPool"/>
    6565      </Item10>
     66      <Item11>
     67        <Filename Value="ULastOpenedList.pas"/>
     68        <UnitName Value="ULastOpenedList"/>
     69      </Item11>
     70      <Item12>
     71        <Filename Value="URegistry.pas"/>
     72        <UnitName Value="URegistry"/>
     73      </Item12>
    6674    </Files>
    6775    <i18n>
  • Common/Common.pas

    r295 r328  
    33 }
    44
    5 unit Common; 
     5unit Common;
    66
    77interface
     
    99uses
    1010  StopWatch, UCommon, UDebugLog, UDelay, UPrefixMultiplier, UURI, UThreading,
    11   UMemory, UResetableThread, UPool, LazarusPackageIntf;
     11  UMemory, UResetableThread, UPool, ULastOpenedList, URegistry,
     12  LazarusPackageIntf;
    1213
    1314implementation
    1415
    15 procedure Register; 
     16procedure Register;
    1617begin
    17   RegisterUnit('UDebugLog', @UDebugLog.Register); 
    18 end; 
     18  RegisterUnit('UDebugLog', @UDebugLog.Register);
     19end;
    1920
    2021initialization
    21   RegisterPackage('Common', @Register); 
     22  RegisterPackage('Common', @Register);
    2223end.
Note: See TracChangeset for help on using the changeset viewer.