mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-21 09:59:32 +02:00
Adds a missing file to the custom drawn package
git-svn-id: trunk@28849 -
This commit is contained in:
parent
04023695d9
commit
1fe899bfee
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
|
||||
|
21
components/customdrawn/customdrawn.pas
Normal file
21
components/customdrawn/customdrawn.pas
Normal 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.
|
Loading…
Reference in New Issue
Block a user