Changeset 89 for trunk/Packages/Common/Common.pas
- Timestamp:
- Sep 6, 2012, 8:29:27 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Packages/Common/Common.pas
r84 r89 3 3 } 4 4 5 unit Common; 5 unit Common; 6 6 7 7 interface … … 9 9 uses 10 10 StopWatch, UCommon, UDebugLog, UDelay, UPrefixMultiplier, UURI, UThreading, 11 UMemory, UResetableThread, UPool, LazarusPackageIntf; 11 UMemory, UResetableThread, UPool, ULastOpenedList, URegistry, 12 UJobProgressView, UXMLUtils, UApplicationInfo, LazarusPackageIntf; 12 13 13 14 implementation 14 15 15 procedure Register; 16 procedure Register; 16 17 begin 17 RegisterUnit('UDebugLog', @UDebugLog.Register); 18 end; 18 RegisterUnit('UDebugLog', @UDebugLog.Register); 19 RegisterUnit('ULastOpenedList', @ULastOpenedList.Register); 20 RegisterUnit('UJobProgressView', @UJobProgressView.Register); 21 RegisterUnit('UApplicationInfo', @UApplicationInfo.Register); 22 end; 19 23 20 24 initialization 21 RegisterPackage('Common', @Register); 25 RegisterPackage('Common', @Register); 22 26 end.
Note:
See TracChangeset
for help on using the changeset viewer.