Adds a missing file to the custom drawn package

git-svn-id: trunk@28849 -
This commit is contained in:
sekelsenmat 2010-12-31 15:12:44 +00:00
parent 04023695d9
commit 1fe899bfee
2 changed files with 22 additions and 0 deletions

1
.gitattributes vendored
View File

@ -586,6 +586,7 @@ components/compilers/javascript/examples/ReadJSClassesXML.lpr svneol=native#text
components/compilers/javascript/examples/jsclassxmlread.pas svneol=native#text/plain
components/custom/README.txt svneol=native#text/plain
components/customdrawn/customdrawn.lpk svneol=native#text/plain
components/customdrawn/customdrawn.pas svneol=native#text/pascal
components/customdrawn/customdrawnextras.pas svneol=native#text/plain
components/customdrawn/customdrawnutils.pas svneol=native#text/pascal
components/customform/custforms.pp svneol=native#text/plain

View File

@ -0,0 +1,21 @@
{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit customdrawn;
interface
uses
customdrawnextras, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('customdrawnextras', @customdrawnextras.Register);
end;
initialization
RegisterPackage('customdrawn', @Register);
end.