diff --git a/.gitattributes b/.gitattributes index d37f8ab372..bedb9ea349 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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 diff --git a/components/customdrawn/customdrawn.pas b/components/customdrawn/customdrawn.pas new file mode 100644 index 0000000000..86f860b60e --- /dev/null +++ b/components/customdrawn/customdrawn.pas @@ -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.