source: trunk/Packages/Common/CommonPackage.pas

Last change on this file was 219, checked in by chronos, 5 days ago
  • Modified: Updated Common package.
  • Modified: Remove U prefix from unit names.
  • Modified: Use Gneeric.Collections instead of fgl.
  • Modified: Do not use global form variables.
File size: 1.5 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 CommonPackage;
6
7{$warn 5023 off : no warning about unused units}
8interface
9
10uses
11 StopWatch, Common, DebugLog, Common.Delay, PrefixMultiplier, URI, Threading,
12 Memory, ResetableThread, Pool, LastOpenedList, RegistryEx, JobProgressView,
13 XML, ApplicationInfo, SyncCounter, ListViewSort, PersistentForm, FindFile,
14 ScaleDPI, Theme, StringTable, MetaCanvas, Geometric, Translator, Languages,
15 PixelPointer, DataFile, TestCase, Generics, Table, FormEx, FormTests,
16 FormTest, FormAbout, FormKeyShortcuts, ItemList, FormItem, FormList,
17 LazarusPackageIntf;
18
19implementation
20
21procedure Register;
22begin
23 RegisterUnit('DebugLog', @DebugLog.Register);
24 RegisterUnit('PrefixMultiplier', @PrefixMultiplier.Register);
25 RegisterUnit('LastOpenedList', @LastOpenedList.Register);
26 RegisterUnit('JobProgressView', @JobProgressView.Register);
27 RegisterUnit('ApplicationInfo', @ApplicationInfo.Register);
28 RegisterUnit('ListViewSort', @ListViewSort.Register);
29 RegisterUnit('PersistentForm', @PersistentForm.Register);
30 RegisterUnit('FindFile', @FindFile.Register);
31 RegisterUnit('ScaleDPI', @ScaleDPI.Register);
32 RegisterUnit('Theme', @Theme.Register);
33 RegisterUnit('Translator', @Translator.Register);
34 RegisterUnit('FormEx', @FormEx.Register);
35end;
36
37initialization
38 RegisterPackage('Common', @Register);
39end.
Note: See TracBrowser for help on using the repository browser.