source: tags/1.3.1/Packages/Common/Common.pas

Last change on this file was 396, checked in by chronos, 3 years ago
  • Added: Common package. UXMLUtils and UPixelPointer moved to Common package.
File size: 1.4 KB
Line 
1{ This file was automatically created by Lazarus. Do not edit!
2 This source is only used to compile and install the package.
3 }
4
5unit Common;
6
7{$warn 5023 off : no warning about unused units}
8interface
9
10uses
11 StopWatch, UCommon, UDebugLog, UDelay, UPrefixMultiplier, UURI, UThreading,
12 UMemory, UResetableThread, UPool, ULastOpenedList, URegistry,
13 UJobProgressView, UXMLUtils, UApplicationInfo, USyncCounter, UListViewSort,
14 UPersistentForm, UFindFile, UScaleDPI, UTheme, UStringTable, UMetaCanvas,
15 UGeometric, UTranslator, ULanguages, UFormAbout, UAboutDialog,
16 UPixelPointer, LazarusPackageIntf;
17
18implementation
19
20procedure Register;
21begin
22 RegisterUnit('UDebugLog', @UDebugLog.Register);
23 RegisterUnit('UPrefixMultiplier', @UPrefixMultiplier.Register);
24 RegisterUnit('ULastOpenedList', @ULastOpenedList.Register);
25 RegisterUnit('UJobProgressView', @UJobProgressView.Register);
26 RegisterUnit('UApplicationInfo', @UApplicationInfo.Register);
27 RegisterUnit('UListViewSort', @UListViewSort.Register);
28 RegisterUnit('UPersistentForm', @UPersistentForm.Register);
29 RegisterUnit('UFindFile', @UFindFile.Register);
30 RegisterUnit('UScaleDPI', @UScaleDPI.Register);
31 RegisterUnit('UTheme', @UTheme.Register);
32 RegisterUnit('UTranslator', @UTranslator.Register);
33 RegisterUnit('UAboutDialog', @UAboutDialog.Register);
34end;
35
36initialization
37 RegisterPackage('Common', @Register);
38end.
Note: See TracBrowser for help on using the repository browser.