lazarus/components/lazsvnpkg/lazsvnpkg.pas
darius 75273b74b1 removed SVNSettingsForm from package
implemented ChangeCursor method for TSVNLogFrm and TSVNStatusFrm

git-svn-id: trunk@17201 -
2008-11-03 15:26:28 +00:00

23 lines
470 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;
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.