lazarus/components/lazsvnpkg/lazsvnpkg.pas
mattias febbca6c63 components: less hints
git-svn-id: trunk@51785 -
2016-03-01 15:26:12 +00:00

24 lines
514 B
ObjectPascal

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