lazarus/components/synunihighlighter/synuni.pas
mattias 33ce4f2bf5 components: less hints
git-svn-id: trunk@51780 -
2016-03-01 15:23:47 +00:00

24 lines
502 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit SynUni;
{$warn 5023 off : no warning about unused units}
interface
uses
SynUniDesigner, SynUniHighlighter, SynUniReg, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('SynUniHighlighter', @SynUniHighlighter.Register);
RegisterUnit('SynUniReg', @SynUniReg.Register);
end;
initialization
RegisterPackage('SynUni', @Register);
end.